46 lines
1018 B
Makefile
46 lines
1018 B
Makefile
TOPSRCDIR = @top_srcdir@
|
|
TOPOBJDIR = ../..
|
|
SRCDIR = @srcdir@
|
|
VPATH = @srcdir@
|
|
MODULE = winetest.exe
|
|
APPMODE = -mconsole
|
|
IMPORTS = uuid comctl32 version user32 gdi32 advapi32 wsock32 kernel32
|
|
DELAYIMPORTS = ole32
|
|
|
|
C_SRCS = \
|
|
gui.c \
|
|
main.c \
|
|
send.c \
|
|
util.c
|
|
|
|
RC_SRCS = \
|
|
winetest.rc
|
|
|
|
SVG_SRCS = winetest.svg
|
|
|
|
TESTBINS = @ALL_TEST_BINARIES@
|
|
TESTRCS = build.rc $(TESTBINS:.exe=.rc)
|
|
EXTRA_OBJS = $(TESTRCS:.rc=.res)
|
|
|
|
@MAKE_PROG_RULES@
|
|
|
|
@ALL_WINETEST_DEPENDS@
|
|
|
|
clean::
|
|
$(RM) winetest-dist.exe $(TESTBINS) $(TESTRCS)
|
|
|
|
build.rc: dummy
|
|
build="STRINGTABLE { 1 \"`GIT_DIR=$(TOPSRCDIR)/.git git rev-parse HEAD 2>/dev/null`\" }" && (echo $$build | cmp -s - $@) || echo $$build >$@ || ($(RM) $@ && exit 1)
|
|
|
|
# Rules for building distributable executable
|
|
|
|
.PHONY: dist
|
|
|
|
dist: winetest-dist.exe$(DLLEXT)
|
|
|
|
winetest-dist.exe winetest-dist.exe.so: $(OBJS) dist.res Makefile.in
|
|
$(WINEGCC) $(APPMODE) $(OBJS) dist.res -o $@ -L$(DLLDIR) $(DELAYIMPORTS:%=-Wb,-d%) $(ALL_LIBS)
|
|
-upx -9 -qqq $@
|
|
|
|
dist.res: build.nfo
|