mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-01 08:13:18 +00:00
34 lines
467 B
Makefile
34 lines
467 B
Makefile
DEFS = @DLLFLAGS@ -D__WINE__
|
|
TOPSRCDIR = @top_srcdir@
|
|
TOPOBJDIR = ..
|
|
SRCDIR = @srcdir@
|
|
VPATH = @srcdir@
|
|
MODULE = relay32
|
|
|
|
SPEC_SRCS = \
|
|
ddraw.spec \
|
|
dinput.spec \
|
|
gdi32.spec \
|
|
kernel32.spec \
|
|
user32.spec \
|
|
wow32.spec \
|
|
wsock32.spec
|
|
|
|
C_SRCS = \
|
|
builtin32.c \
|
|
relay386.c \
|
|
snoop.c \
|
|
utthunk.c \
|
|
wowthunk.c
|
|
|
|
GEN_ASM_SRCS = \
|
|
call32.s
|
|
|
|
all: $(MODULE).o
|
|
|
|
@MAKE_RULES@
|
|
|
|
call32.s: $(BUILD)
|
|
$(BUILD) @BUILDFLAGS@ -o $@ -call32
|
|
|
|
### Dependencies:
|