Implemented the PSH_USEICONID/PSH_USEHICON and the PSP_USETITLE
[wine.git] / debugger / Makefile.in
blob994581f1a1ba34dfbc4756a2834ab609f84c4791
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 msc.c \
19 registers.c \
20 source.c \
21 stabs.c \
22 stack.c \
23 types.c
25 EXTRA_SRCS = dbg.y debug.l
26 EXTRA_OBJS = y.tab.o lex.yy.o
28 all: $(MODULE).o
30 depend:: y.tab.h
33 # This is a special test program that helps debug the internal debugger.
35 debug: $(MODULE).o dbgmain.o ../misc/xmalloc.o
36 $(CC) -o debug $(MODULE).o dbgmain.o ../misc/xmalloc.o
38 @MAKE_RULES@
40 y.tab.c y.tab.h: dbg.y
41 $(YACC) -d -t $(SRCDIR)/dbg.y
43 lex.yy.c: debug.l
44 $(LEX) -8 -I $(SRCDIR)/debug.l
46 clean::
47 $(RM) y.tab.c y.tab.h lex.yy.c
49 ### Dependencies: