40 lines
584 B
Makefile
40 lines
584 B
Makefile
MODULE = winedbg.exe
|
|
APPMODE = -mconsole
|
|
IMPORTS = psapi dbghelp advapi32
|
|
DELAYIMPORTS = comdlg32 shell32 comctl32 user32 gdi32
|
|
EXTRALIBS = @LIBPOLL@
|
|
|
|
C_SRCS = \
|
|
be_arm.c \
|
|
be_i386.c \
|
|
be_ppc.c \
|
|
be_sparc.c \
|
|
be_x86_64.c \
|
|
break.c \
|
|
crashdlg.c \
|
|
db_disasm.c \
|
|
db_disasm64.c \
|
|
display.c \
|
|
expr.c \
|
|
gdbproxy.c \
|
|
info.c \
|
|
memory.c \
|
|
source.c \
|
|
stack.c \
|
|
symbol.c \
|
|
tgt_active.c \
|
|
tgt_minidump.c \
|
|
tgt_module.c \
|
|
types.c \
|
|
winedbg.c
|
|
|
|
RC_SRCS = winedbg.rc
|
|
PO_SRCS = winedbg.rc
|
|
|
|
LEX_SRCS = debug.l
|
|
BISON_SRCS = dbg.y
|
|
|
|
MANPAGE = winedbg.man
|
|
|
|
@MAKE_PROG_RULES@
|