blob: 3f5d49d8d7b9273c16be23f4daa6f5086dea8cce [file] [log] [blame]
DEFS = -D__WINE__ -DNO_TRANSITION_TYPES
TOPSRCDIR = @top_srcdir@
TOPOBJDIR = ..
SRCDIR = @srcdir@
VPATH = @srcdir@
MODULE = debugger
C_SRCS = \
break.c \
db_disasm.c \
display.c \
editline.c \
expr.c \
hash.c \
info.c \
memory.c \
msc.c \
registers.c \
source.c \
stabs.c \
stack.c \
types.c
GEN_C_SRCS = \
y.tab.c \
lex.yy.c
all: $(MODULE).o
#
# This is a special test program that helps debug the internal debugger.
#
debug: $(MODULE).o dbgmain.o ../misc/xmalloc.o
$(CC) -o debug $(MODULE).o dbgmain.o ../misc/xmalloc.o
@MAKE_RULES@
y.tab.c y.tab.h: dbg.y
$(YACC) -d -t $(SRCDIR)/dbg.y
lex.yy.c: debug.l
$(LEX) -8 -I $(SRCDIR)/debug.l
### Dependencies: