mirror of
https://github.com/reactos/wine.git
synced 2024-11-25 20:59:54 +00:00
bf9130af10
Sun Oct 13 15:32:32 1996 Alexandre Julliard <julliard@lrc.epfl.ch> * [Make.rules.in] [*/Makefile.in] Made it possible to compile from a directory other than the source directory. * [graphics/metafiledrv/init.c] [include/metafiledrv.h] [objects/metafile.c] [objects/dc.c] New graphics driver for metafiles. * [if1632/thunk.c] Added thunks for SetWindowsHook and SetDCHook. * [windows/dialog.c] Fixed GetNextDlgGroupItem and GetNextDlgTabItem to skip disabled items. * [*/*] Removed non Win32-clean types HANDLE, HBITMAP, HBRUSH, HFONT, HINSTANCE, HMENU, HRGN and HTASK. Wed Oct 9 14:59:45 1996 Frans van Dorsselaer <dorssel@rulhm1.LeidenUniv.nl> * [controls/edit.c] Fixed EditWndProc() to fall back to DefWndProc() when the edit state structure is not available. Wed Oct 2 14:00:34 1996 Huw D. M. Davies <h.davies1@physics.oxford.ac.uk> * [windows/nonclient.c] [windows/mdi.c] AdjustWindowRectEx16() should only take notice of the styles WS_DLGFRAME, WS_BORDER, WS_THICKFRAME and WS_EX_DLGMODALFRAME. Thanks to Alex Korobka. * [controls/scroll.c] Fixed typo in ShowScrollBar32(). Sun Aug 25 20:18:56 1996 Jukka Iivonen <iivonen@cc.helsinki.fi> * [if1632/user32.spec] [if1632/winmm.spec] Added SetParent and sndPlaySoundA.
102 lines
2.0 KiB
Makefile
102 lines
2.0 KiB
Makefile
DEFS = -D__WINE__ -DNO_TRANSITION_TYPES
|
|
TOPSRCDIR = @top_srcdir@
|
|
TOPOBJDIR = ..
|
|
SRCDIR = @srcdir@
|
|
VPATH = @srcdir@
|
|
MODULE = if1632
|
|
|
|
DLLS = \
|
|
advapi32.spec \
|
|
comctl32.spec \
|
|
comdlg32.spec \
|
|
commdlg.spec \
|
|
compobj.spec \
|
|
crtdll.spec \
|
|
ddeml.spec \
|
|
gdi.spec \
|
|
gdi32.spec \
|
|
kernel.spec \
|
|
kernel32.spec \
|
|
keyboard.spec \
|
|
lz32.spec \
|
|
lzexpand.spec \
|
|
mmsystem.spec \
|
|
mouse.spec \
|
|
mpr.spec \
|
|
ntdll.spec \
|
|
ole2.spec \
|
|
ole2conv.spec \
|
|
ole2disp.spec \
|
|
ole2nls.spec \
|
|
ole2prox.spec \
|
|
ole32.spec \
|
|
olecli.spec \
|
|
olesvr.spec \
|
|
shell.spec \
|
|
shell32.spec \
|
|
sound.spec \
|
|
storage.spec \
|
|
stress.spec \
|
|
system.spec \
|
|
toolhelp.spec \
|
|
user.spec \
|
|
user32.spec \
|
|
ver.spec \
|
|
version.spec \
|
|
w32sys.spec \
|
|
win87em.spec \
|
|
winmm.spec \
|
|
winsock.spec \
|
|
winspool.spec \
|
|
wprocs.spec \
|
|
wsock32.spec
|
|
|
|
SPEC_FILES = $(DLLS:.spec=.S)
|
|
|
|
C_SRCS = \
|
|
dummy.c \
|
|
relay.c \
|
|
thunk.c
|
|
|
|
ASM_SRCS = \
|
|
$(SPEC_FILES) \
|
|
callfrom16.S \
|
|
callfrom32.S \
|
|
callto16.S \
|
|
callto32.S \
|
|
except.S
|
|
|
|
.SUFFIXES: .spec
|
|
|
|
.spec.S:
|
|
$(BUILD) -spec $< > $*.S
|
|
|
|
all: checkbuild $(MODULE).o
|
|
|
|
@MAKE_RULES@
|
|
|
|
$(SPEC_FILES): $(BUILD)
|
|
|
|
$(BUILD) checkbuild:
|
|
cd $(TOPOBJDIR)/tools; $(SUBMAKE) build
|
|
|
|
callfrom16.S: $(SPEC_FILES)
|
|
$(BUILD) -callfrom16 `cat $(SPEC_FILES) | grep CallFrom16_ | sed 's/.*CallFrom16_\(.*\)/\1/' | sort | uniq` > callfrom16.S
|
|
|
|
callfrom32.S: $(SPEC_FILES)
|
|
$(BUILD) -callfrom32 `cat $(SPEC_FILES) | grep CallFrom32_ | sed 's/.*CallFrom32_\(.*\)/\1/' | sort | uniq` > callfrom32.S
|
|
|
|
callto16.S: $(TOPSRCDIR)/include/callback.h $(BUILD)
|
|
$(BUILD) -callto16 `cat $(TOPSRCDIR)/include/callback.h | grep "extern.*CallTo16_" | sed 's/.*CallTo16_\(.*\)(.*/\1/' | sort | uniq` > callto16.S
|
|
|
|
callto32.S: $(TOPSRCDIR)/include/callback.h $(BUILD)
|
|
$(BUILD) -callto32 `cat $(TOPSRCDIR)/include/callback.h | grep "extern.*CallTo32_" | sed 's/.*CallTo32_\(.*\)(.*/\1/' | sort | uniq` > callto32.S
|
|
|
|
except.o: except.S $(TOPOBJDIR)/include/config.h
|
|
$(CC) -c $(DIVINCL) -o $*.o $(SRCDIR)/except.S
|
|
|
|
clean::
|
|
$(RM) $(SPEC_FILES) callfrom16.S callfrom32.S callto16.S callto32.S
|
|
|
|
### Dependencies:
|