73 lines
1.0 KiB
Makefile
73 lines
1.0 KiB
Makefile
DEFS = @DLLFLAGS@ -D__WINE__
|
|
TOPSRCDIR = @top_srcdir@
|
|
TOPOBJDIR = ..
|
|
SRCDIR = @srcdir@
|
|
VPATH = @srcdir@
|
|
MODULE = if1632
|
|
|
|
SPEC_SRCS = \
|
|
avifile.spec \
|
|
comm.spec \
|
|
commdlg.spec \
|
|
compobj.spec \
|
|
ddeml.spec \
|
|
dispdib.spec \
|
|
display.spec \
|
|
gdi.spec \
|
|
kernel.spec \
|
|
keyboard.spec \
|
|
lzexpand.spec \
|
|
mmsystem.spec \
|
|
mouse.spec \
|
|
msacm.spec \
|
|
msvideo.spec \
|
|
ole2.spec \
|
|
ole2conv.spec \
|
|
ole2disp.spec \
|
|
ole2nls.spec \
|
|
ole2prox.spec \
|
|
ole2thk.spec \
|
|
olecli.spec \
|
|
olesvr.spec \
|
|
rasapi16.spec \
|
|
shell.spec \
|
|
sound.spec \
|
|
storage.spec \
|
|
stress.spec \
|
|
system.spec \
|
|
toolhelp.spec \
|
|
typelib.spec \
|
|
user.spec \
|
|
ver.spec \
|
|
w32sys.spec \
|
|
win32s16.spec \
|
|
win87em.spec \
|
|
winaspi.spec \
|
|
windebug.spec \
|
|
wineps.spec \
|
|
wing.spec \
|
|
winsock.spec \
|
|
wprocs.spec
|
|
|
|
C_SRCS = \
|
|
builtin.c \
|
|
dummy.c \
|
|
relay.c \
|
|
snoop.c \
|
|
thunk.c
|
|
|
|
GEN_ASM_SRCS = \
|
|
call16.s
|
|
|
|
GLUE = $(SPEC_SRCS:.spec=.spec.c) \
|
|
thunk.c
|
|
|
|
all: $(MODULE).o
|
|
|
|
@MAKE_RULES@
|
|
|
|
call16.s: $(BUILD)
|
|
$(BUILD) @BUILDFLAGS@ -o $@ -call16
|
|
|
|
### Dependencies:
|