Release 941017
[wine/gsoc-2012-control.git] / debugger / Imakefile
blob0eae52b6d8dc0f48e1cab24816eb0aacc1a2bd79
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 = $(SRCS:.c=.o)
22  * All the SUBDIR stuff
23  */
24 MakeSubdirs($(SUBDIRS))
25 MakefileSubdirs($(SUBDIRS))
26 DependSubdirs($(SUBDIRS))
27 CleanSubdirs($(SUBDIRS))
28 IncludesSubdirs($(SUBDIRS))
31  * The main act
32  */
33 WineRelocatableTarget($(TOP)/$(MODULE),,$(OBJS))
35 depend:: dbg.tab.c dbg.tab.h lex.yy.c
37 DependTarget()
39 includes::
41 install::
43 clean::
44         $(RM) lex.yy.c dbg.tab* y.tab.c
46 dbg.tab.c dbg.tab.h: dbg.y
47         $(YACC) -b dbg -d dbg.y
49 lex.yy.c: debug.l
50         $(LEX) -I debug.l