Release 940405
[wine/gsoc-2012-control.git] / debugger / Imakefile
blob2e481f0cc33a8a54a9fe6bf95d8efffbde4538bd
1 #include "../Wine.tmpl"
3 #define IHavSubDirs
4 #define PassCDebugFlags 'CDEBUGFLAGS=$(CDEBUGFLAGS)' 'CC=$(CC)'
6 MODULE = debugger
8 SUBDIRS = readline
10 /* Quick and dirt hack, since i386 is defined as 1. sigh */
11 #define temp i386
12 #undef i386
14 SRCS = \
15         dbg.tab.c \
16         hash.c \
17         lex.yy.c \
18         info.c \
19         i386-pinsn.c
21 OBJS = \
22         dbg.tab.o \
23         hash.o \
24         lex.yy.o \
25         info.o \
26         i386-pinsn.o
28 #define i386 temp
29 #undef temp
32  * All the SUBDIR stuff
33  */
34 MakeSubdirs($(SUBDIRS))
35 MakefileSubdirs($(SUBDIRS))
36 DependSubdirs($(SUBDIRS))
37 CleanSubdirs($(SUBDIRS))
38 IncludesSubdirs($(SUBDIRS))
41  * The main act
42  */
43 WineRelocatableTarget($(TOP)/$(MODULE),,$(OBJS))
45 depend:: dbg.tab.c dbg.tab.h lex.yy.c
47 DependTarget()
49 includes::
51 install::
53 clean::
54         $(RM) lex.yy.c dbg.tab* y.tab.c
56 dbg.tab.c dbg.tab.h: dbg.y
57         $(YACC) -b dbg -d dbg.y
59 lex.yy.c: debug.l
60         $(LEX) -I debug.l