forked from scummvm/scummvm
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmodule.mk
93 lines (76 loc) · 2.83 KB
/
module.mk
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
######################################################################
# Unit/regression tests, based on CxxTest.
# Use the 'test' target to run them.
# Edit TESTS and TESTLIBS to add more tests.
#
######################################################################
TESTS := $(srcdir)/test/common/*.h $(srcdir)/test/common/formats/*.h $(srcdir)/test/audio/*.h $(srcdir)/test/math/*.h $(srcdir)/test/image/*.h
TEST_LIBS :=
ifdef POSIX
TEST_LIBS += test/null_osystem.o \
backends/fs/posix/posix-fs-factory.o \
backends/fs/posix/posix-fs.o \
backends/fs/posix/posix-iostream.o \
backends/fs/abstract-fs.o \
backends/fs/stdiostream.o \
backends/modular-backend.o
endif
ifdef WIN32
TEST_LIBS += test/null_osystem.o \
backends/fs/windows/windows-fs-factory.o \
backends/fs/windows/windows-fs.o \
backends/fs/abstract-fs.o \
backends/fs/stdiostream.o \
backends/modular-backend.o \
backends/platform/sdl/win32/win32_wrapper.o
endif
TEST_LIBS += audio/libaudio.a math/libmath.a common/formats/libformats.a common/compression/libcompression.a common/libcommon.a image/libimage.a graphics/libgraphics.a
ifeq ($(ENABLE_WINTERMUTE), STATIC_PLUGIN)
TESTS += $(srcdir)/test/engines/wintermute/*.h
TEST_LIBS += engines/wintermute/libwintermute.a
endif
ifeq ($(ENABLE_ULTIMA), STATIC_PLUGIN)
ifdef ENABLE_ULTIMA1
TESTS += $(srcdir)/test/engines/ultima/shared/*/*.h
endif
ifdef ENABLE_ULTIMA8
TESTS += $(srcdir)/test/engines/ultima/ultima8/*/*.h
endif
TEST_LIBS += engines/ultima/libultima.a
endif
#
TEST_FLAGS := --runner=StdioPrinter --no-std --no-eh
TEST_CFLAGS := $(CFLAGS) -I$(srcdir)/test/cxxtest
TEST_LDFLAGS := $(LDFLAGS) $(LIBS)
TEST_CXXFLAGS := $(filter-out -Wglobal-constructors,$(CXXFLAGS))
TEST_CXXFLAGS += -Wno-self-assign-overloaded
ifdef WIN32
TEST_LDFLAGS := $(filter-out -mwindows,$(TEST_LDFLAGS))
endif
ifdef N64
TEST_LDFLAGS := $(filter-out -mno-crt0,$(TEST_LDFLAGS))
endif
ifdef PSP
TEST_LIBS += backends/platform/psp/memory.o \
backends/platform/psp/mp3.o \
backends/platform/psp/trace.o
endif
# Enable this to get an X11 GUI for the error reporter.
#TEST_FLAGS += --gui=X11Gui
#TEST_LDFLAGS += -L/usr/X11R6/lib -lX11
test: test/runner
./test/runner
test/runner: test/runner.cpp $(TEST_LIBS) copy-dat
+$(QUIET_CXX)$(LD) $(TEST_CXXFLAGS) $(CPPFLAGS) $(TEST_CFLAGS) -o $@ test/runner.cpp $(TEST_LIBS) $(TEST_LDFLAGS)
test/runner.cpp: $(TESTS) $(srcdir)/test/module.mk
@mkdir -p test
$(srcdir)/test/cxxtest/cxxtestgen.py $(TEST_FLAGS) -o $@ $+
clean: clean-test
clean-test:
-$(RM) test/runner.cpp test/runner test/engine-data/encoding.dat test/null_osystem.o
-rmdir test/engine-data
test/engine-data/encoding.dat: $(srcdir)/dists/engine-data/encoding.dat
$(MKDIR) test/engine-data
$(CP) $(srcdir)/dists/engine-data/encoding.dat test/engine-data/encoding.dat
copy-dat: test/engine-data/encoding.dat
.PHONY: test clean-test copy-dat