mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-14 08:50:58 +00:00
c86f1f671b
This needed the test struct declaration to be moved out to a head file so it can be shared with other tests.
23 lines
673 B
Text
23 lines
673 B
Text
libs_gamecode_tests = \
|
|
libs/gamecode/test/test-load \
|
|
libs/gamecode/test/test-store
|
|
|
|
TESTS += $(libs_gamecode_tests)
|
|
|
|
check_PROGRAMS += $(libs_gamecode_tests)
|
|
|
|
EXTRA_DIST += head.c main.c
|
|
|
|
test_gamecode_libs= \
|
|
libs/gamecode/libQFgamecode.la \
|
|
libs/util/libQFutil.la
|
|
|
|
libs_gamecode_test_test_load_SOURCES= \
|
|
libs/gamecode/test/test-load.c
|
|
libs_gamecode_test_test_load_LDADD= $(test_gamecode_libs)
|
|
libs_gamecode_test_test_load_DEPENDENCIES= $(test_gamecode_libs)
|
|
|
|
libs_gamecode_test_test_store_SOURCES= \
|
|
libs/gamecode/test/test-store.c
|
|
libs_gamecode_test_test_store_LDADD= $(test_gamecode_libs)
|
|
libs_gamecode_test_test_store_DEPENDENCIES= $(test_gamecode_libs)
|