Added missing winestub dependency.
[wine/multimedia.git] / debugger / Makefile.in
blob590b8523499e4c270bf7068d236d6ce633507e9b
1 DEFS = -DWINELIB
2 TOPSRCDIR = @top_srcdir@
3 TOPOBJDIR = ..
4 SRCDIR = @srcdir@
5 VPATH = @srcdir@
6 MODULE = none
7 PROGRAMS = winedbg
8 ALL_LIBS = $(WINELIB) $(X_LIBS) $(XLIB) $(LIBS)
9 WRCEXTRA = -A -p $*
11 C_SRCS = \
12 break.c \
13 db_disasm.c \
14 display.c \
15 editline.c \
16 expr.c \
17 external.c \
18 hash.c \
19 info.c \
20 memory.c \
21 module.c \
22 msc.c \
23 registers.c \
24 source.c \
25 stabs.c \
26 stack.c \
27 types.c \
28 winedbg.c
30 SPEC_SRCS = winedbg.spec
32 EXTRA_SRCS = dbg.y debug.l
33 EXTRA_OBJS = y.tab.o lex.yy.o
35 all: $(PROGRAMS)
37 depend: y.tab.h
39 @MAKE_RULES@
41 y.tab.c y.tab.h: dbg.y
42 $(YACC) -d -t $(SRCDIR)/dbg.y
44 lex.yy.c: debug.l
45 $(LEX) -8 -I $(SRCDIR)/debug.l
47 winedbg: $(OBJS) $(WINESTUB)
48 $(CC) -o $@ $(OBJS) $(LDOPTIONS) $(ALL_LIBS)
50 ### Dependencies: