mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-05 18:01:34 +00:00
32459912dc
it can be used on platforms that don't build a .spec.c file.
21 lines
330 B
Makefile
21 lines
330 B
Makefile
DEFS = -D__WINE__
|
|
TOPSRCDIR = @top_srcdir@
|
|
TOPOBJDIR = ..
|
|
SRCDIR = @srcdir@
|
|
VPATH = @srcdir@
|
|
MODULE = miscemu
|
|
IMPORTS = ntdll.dll
|
|
|
|
SPEC_SRCS = wine.spec
|
|
|
|
C_SRCS = \
|
|
main.c
|
|
|
|
all: $(MODULE).o
|
|
|
|
@MAKE_RULES@
|
|
|
|
$(MODULE).o: $(OBJS) Makefile.in $(TOPSRCDIR)/Make.rules.in
|
|
$(LDCOMBINE) $(OBJS) -o $@
|
|
|
|
### Dependencies:
|