mirror of
git://source.winehq.org/git/wine.git
synced 2024-10-31 10:41:12 +00:00
deca2502d6
unload a module (and it's debugging information), and a process without pain - portabiblity to another CPU should be easier now (CPU dependent backend) - speed up memory allocation - stabs related fixes: + now correctly handling symbol's size + blocks {} in functions are now correctly recognized and stored (also applies to local variables scoping) + better basic types management (less wild guesses in the code) + full support of inline functions (source stepping now shows the code in .h files for example) - removal of external debugger (attaching with gdb is just fine to debug winedbg) - fixed a couple of issues for symbol address handling (address lookup, incorrect type binding) - winedbg now has a man page
50 lines
913 B
Makefile
50 lines
913 B
Makefile
TOPSRCDIR = @top_srcdir@
|
|
TOPOBJDIR = ../..
|
|
SRCDIR = @srcdir@
|
|
VPATH = @srcdir@
|
|
MODULE = winedbg.exe
|
|
APPMODE = -mconsole
|
|
IMPORTS = dbghelp advapi32 kernel32 ntdll
|
|
DELAYIMPORTS = user32
|
|
|
|
C_SRCS = \
|
|
be_i386.c \
|
|
be_ppc.c \
|
|
break.c \
|
|
db_disasm.c \
|
|
display.c \
|
|
expr.c \
|
|
gdbproxy.c \
|
|
info.c \
|
|
memory.c \
|
|
source.c \
|
|
symbol.c \
|
|
stack.c \
|
|
types.c \
|
|
winedbg.c
|
|
|
|
EXTRA_SRCS = dbg.y debug.l
|
|
EXTRA_OBJS = y.tab.o @LEX_OUTPUT_ROOT@.o
|
|
|
|
@MAKE_PROG_RULES@
|
|
|
|
y.tab.c y.tab.h: dbg.y
|
|
$(YACC) -d -t $(SRCDIR)/dbg.y
|
|
|
|
# hack to allow parallel make
|
|
y.tab.h: y.tab.c
|
|
y.tab.o: y.tab.h
|
|
|
|
@LEX_OUTPUT_ROOT@.c: debug.l
|
|
$(LEX) -8 -I $(SRCDIR)/debug.l
|
|
|
|
@LEX_OUTPUT_ROOT@.o: y.tab.h
|
|
|
|
install::
|
|
$(MKINSTALLDIRS) $(mandir)/man$(prog_manext)
|
|
$(INSTALL_DATA) $(SRCDIR)/winedbg.man $(mandir)/man$(prog_manext)/winedbg.$(prog_manext)
|
|
|
|
uninstall::
|
|
$(RM) $(mandir)/man$(prog_manext)/winedbg.$(prog_manext)
|
|
|
|
### Dependencies:
|