Release 940518
[wine/multimedia.git] / debugger / Imakefile
blob8f4d8a7a0650e36046f5a86733dd3f66908792fd
1 #include "../Wine.tmpl"
3 #define IHavSubDirs
4 #define PassCDebugFlags 'CDEBUGFLAGS=$(CDEBUGFLAGS)' 'CC=$(CC)' 'MAKE=$(MAKE)'
6 MODULE = debugger
8 SUBDIRS = opcodes readline
10 DEFINES = -DUSE_READLINE -Iopcodes
12 SRCS = \
13         dbg.tab.c \
14         break.c \
15         hash.c \
16         lex.yy.c \
17         info.c
19 OBJS = \
20         dbg.tab.o \
21         break.o \
22         hash.o \
23         lex.yy.o \
24         info.o
27  * All the SUBDIR stuff
28  */
29 MakeSubdirs($(SUBDIRS))
30 MakefileSubdirs($(SUBDIRS))
31 DependSubdirs($(SUBDIRS))
32 CleanSubdirs($(SUBDIRS))
33 IncludesSubdirs($(SUBDIRS))
36  * The main act
37  */
38 WineRelocatableTarget($(TOP)/$(MODULE),,$(OBJS))
40 depend:: dbg.tab.c dbg.tab.h lex.yy.c
42 DependTarget()
44 includes::
46 install::
48 clean::
49         $(RM) lex.yy.c dbg.tab* y.tab.c
51 dbg.tab.c dbg.tab.h: dbg.y
52         $(YACC) -b dbg -d dbg.y
54 lex.yy.c: debug.l
55         $(LEX) -I debug.l