26 lines
377 B
Makefile
26 lines
377 B
Makefile
DEFS = @DLLFLAGS@ -D__WINE__
|
|
TOPSRCDIR = @top_srcdir@
|
|
TOPOBJDIR = ..
|
|
SRCDIR = @srcdir@
|
|
VPATH = @srcdir@
|
|
MODULE = win32
|
|
|
|
C_SRCS = \
|
|
console.c \
|
|
device.c \
|
|
except.c \
|
|
file.c \
|
|
init.c \
|
|
kernel32.c \
|
|
newfns.c \
|
|
time.c
|
|
|
|
all: $(MODULE).o
|
|
|
|
@MAKE_RULES@
|
|
|
|
$(MODULE).o: $(OBJS) Makefile.in $(TOPSRCDIR)/Make.rules.in
|
|
$(LDCOMBINE) $(OBJS) -o $@
|
|
|
|
### Dependencies:
|