Make DirectDraw compile with DGA2 present.
[wine/testsucceed.git] / debugger / Makefile.in
blobdf5677b9288f4f54951fde1c1e73e11f8a657e4d
1 DEFS = -D__WINE__ -DLIBDIR="\"$(libdir)\""
2 TOPSRCDIR = @top_srcdir@
3 TOPOBJDIR = ..
4 SRCDIR = @srcdir@
5 VPATH = @srcdir@
6 MODULE = debugger
8 C_SRCS = \
9 break.c \
10 db_disasm.c \
11 display.c \
12 editline.c \
13 expr.c \
14 external.c \
15 hash.c \
16 info.c \
17 memory.c \
18 module.c \
19 msc.c \
20 registers.c \
21 source.c \
22 stabs.c \
23 stack.c \
24 types.c \
25 winedbg.c
27 EXTRA_SRCS = dbg.y debug.l
28 EXTRA_OBJS = y.tab.o lex.yy.o
30 all: $(MODULE).o
32 depend: y.tab.h
35 # This is a special test program that helps debug the internal debugger.
37 debug: $(MODULE).o dbgmain.o ../misc/xmalloc.o
38 $(CC) -o debug $(MODULE).o dbgmain.o ../misc/xmalloc.o
40 @MAKE_RULES@
42 y.tab.c y.tab.h: dbg.y
43 $(YACC) -d -t $(SRCDIR)/dbg.y
45 lex.yy.c: debug.l
46 $(LEX) -8 -I $(SRCDIR)/debug.l
48 ### Dependencies: