wine-wine/programs/winetest/Makefile.in

61 lines
1.3 KiB
Makefile
Raw Normal View History

TOPSRCDIR = @top_srcdir@
TOPOBJDIR = ../..
SRCDIR = @srcdir@
VPATH = @srcdir@
MODULE = winetest.exe
APPMODE = -mconsole
IMPORTS = uuid comctl32 version user32 gdi32 advapi32 wsock32 kernel32
DELAYIMPORTS = ole32
EXTRARCFLAGS = -DBUILD_SHA1=\"`GIT_DIR=$(TOPSRCDIR)/.git git rev-parse HEAD 2>/dev/null`\"
C_SRCS = \
2004-01-15 01:48:05 +00:00
gui.c \
main.c \
send.c \
util.c
2004-01-15 01:48:05 +00:00
RC_SRCS = \
winetest.rc
2004-01-15 01:48:05 +00:00
2008-03-28 18:24:52 +00:00
SVG_SRCS = winetest.svg
@MAKE_PROG_RULES@
ALL_TEST_DIRS = @ALL_TEST_DIRS@
TESTBINS = $(ALL_TEST_DIRS:%/tests=%_test.exe)
@ALL_WINETEST_DEPENDS@
# Special rules
winetest.res: $(TESTBINS)
tests.rc: Makefile.in $(TOPOBJDIR)/config.status
(for i in $(TESTBINS); do echo "$$i TESTRES \"$$i\""; done) >$@ || ($(RM) $@ && false)
clean::
$(RM) tests.rc dist.res winetest-dist.exe $(TESTBINS)
depend: tests.rc
# Rules for building distributable executable
.PHONY: dist
dist: winetest-dist.exe$(DLLEXT)
winetest-dist.exe.so: $(OBJS) dist.res Makefile.in
$(WINEGCC) $(APPMODE) $(OBJS) dist.res -o $@ -L$(DLLDIR) $(DELAYIMPORTS:%=-Wb,-d%) $(ALL_LIBS)
winetest-dist.exe: $(OBJS) dist.res.o Makefile.in
$(WINEGCC) $(APPMODE) $(OBJS) dist.res.o -o $@ -L$(DLLDIR) $(DELAYIMPORTS:%=-Wb,-d%) $(ALL_LIBS)
-upx -9 -qqq $@
dist.res: winetest.rc tests.rc build.nfo winetest.ico $(TESTBINS)
@DEPENDENCIES@ # everything below this line is overwritten by make depend
winetest.res: tests.rc