Release 950122
[wine/multimedia.git] / debugger / Imakefile
blob7b7ea9d92961427eee4b2fc71357e7321dde85a7
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
21 SUBDIRS_OBJS = readline/readline.o
23 OBJS = $(SRCS:.c=.o) $(SUBDIRS_OBJS)
26  * All the SUBDIR stuff
27  */
28 MakeSubdirs($(SUBDIRS))
29 DependSubdirs($(SUBDIRS))
32  * The main act
33  */
34 WineRelocatableTarget($(MODULE),,$(OBJS))
36 depend:: dbg.tab.c dbg.tab.h lex.yy.c
38 DependTarget()
40 includes::
42 install::
44 clean::
45         $(RM) lex.yy.c dbg.tab* y.tab.c
47 dbg.tab.c dbg.tab.h: dbg.y
48         $(YACC) -b dbg -d dbg.y
50 lex.yy.c: debug.l
51         $(LEX) -I debug.l