Release 950918
[wine/multimedia.git] / debugger / Imakefile
blob766a9c74ffe62aa481875cde3b492f002871f3cb
1 #include "../Wine.tmpl"
3 #define IHaveSubdirs
4 #define PassCDebugFlags 'CDEBUGFLAGS=$(CDEBUGFLAGS)' 'CC=$(CC)' 'MAKE=$(MAKE)'\
5                         'LD=$(LD)'
7 MODULE = debugger
9 SUBDIRS = readline
11 DEFINES = -DUSE_READLINE
13 SRCS = \
14         break.c \
15         db_disasm.c \
16         dbg.tab.c \
17         hash.c \
18         info.c \
19         lex.yy.c \
20         memory.c \
21         registers.c \
22         stack.c
24 SUBDIRS_OBJS = readline/readline.o
26 OBJS = $(SRCS:.c=.o) $(SUBDIRS_OBJS)
29  * All the SUBDIR stuff
30  */
31 MakeSubdirs($(SUBDIRS))
32 DependSubdirs($(SUBDIRS))
35  * The main act
36  */
37 WineRelocatableTarget($(MODULE),,$(OBJS))
39 depend:: dbg.tab.c dbg.tab.h lex.yy.c
41 DependTarget()
43 includes::
45 install::
47 clean::
48         $(RM) lex.yy.c dbg.tab* y.tab.c
50 dbg.tab.c dbg.tab.h: dbg.y
51         $(YACC) -b dbg -d dbg.y
53 lex.yy.c: debug.l
54         $(LEX) -I debug.l