mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-05 18:01:34 +00:00
530ee8407c
Tue Oct 22 20:09:52 1996 Alexandre Julliard <julliard@lrc.epfl.ch> * [*/Makefile.in] [tools/makedep.c] New program to generate dependencies; should be faster and more portable than 'gcc -MM'. * [*/*] Replaced WPARAM and HDC by explicitly-sized types. * [windows/hook.c] Fixed bug in HOOK_GetHook16 function. Thu Oct 17 09:13:50 1996 John Harvey <john@division.co.uk> * [include/debug.h] [include/stddebug.h] Added debug option for win16drv (-debugmsg +win16drv) * [graphics/win16drv/init.c] Only enable CreateDC if printer=on specified in wine section of wine.conf. printfs changed to dprintf_win16drv. Some tidying up. * [include/gdi.h] [graphics/x11drv/clipping.c] [graphics/x11drv/Makefile.in] Moved SetDeviceClipping into drivers.
32 lines
450 B
Makefile
32 lines
450 B
Makefile
DEFS = -D__WINE__ -DNO_TRANSITION_TYPES
|
|
TOPSRCDIR = @top_srcdir@
|
|
TOPOBJDIR = ..
|
|
SRCDIR = @srcdir@
|
|
VPATH = @srcdir@
|
|
MODULE = debugger
|
|
|
|
C_SRCS = \
|
|
break.c \
|
|
db_disasm.c \
|
|
editline.c \
|
|
hash.c \
|
|
info.c \
|
|
memory.c \
|
|
registers.c \
|
|
stack.c
|
|
|
|
GEN_C_SRCS = \
|
|
y.tab.c \
|
|
lex.yy.c
|
|
|
|
all: $(MODULE).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:
|