22 lines
380 B
Makefile
22 lines
380 B
Makefile
DEFS = -D__WINE__
|
|
TOPSRCDIR = @top_srcdir@
|
|
TOPOBJDIR = ..
|
|
SRCDIR = @srcdir@
|
|
VPATH = @srcdir@
|
|
MODULE = miscemu
|
|
IMPORTS = ntdll
|
|
|
|
SPEC_SRCS = wine.spec
|
|
|
|
C_SRCS = \
|
|
main.c
|
|
|
|
all: $(MODULE).o
|
|
|
|
@MAKE_RULES@
|
|
|
|
$(MODULE).o: $(SPEC_SRCS:.spec=.spec.o) $(OBJS) Makefile.in $(TOPSRCDIR)/Make.rules.in
|
|
$(LDCOMBINE) $(SPEC_SRCS:.spec=.spec.o) $(OBJS) -o $@
|
|
|
|
### Dependencies:
|