2022-01-03 05:41:29 +00:00
|
|
|
libs_gamecode_tests = \
|
2022-01-03 06:22:34 +00:00
|
|
|
libs/gamecode/test/test-load \
|
2022-01-03 14:50:38 +00:00
|
|
|
libs/gamecode/test/test-vector \
|
2022-01-03 07:29:42 +00:00
|
|
|
libs/gamecode/test/test-stack \
|
2022-01-03 05:41:29 +00:00
|
|
|
libs/gamecode/test/test-store
|
|
|
|
|
|
|
|
TESTS += $(libs_gamecode_tests)
|
|
|
|
|
|
|
|
check_PROGRAMS += $(libs_gamecode_tests)
|
|
|
|
|
2022-01-03 06:22:34 +00:00
|
|
|
EXTRA_DIST += head.c main.c
|
2022-01-03 05:41:29 +00:00
|
|
|
|
|
|
|
test_gamecode_libs= \
|
|
|
|
libs/gamecode/libQFgamecode.la \
|
|
|
|
libs/util/libQFutil.la
|
|
|
|
|
2022-01-03 06:22:34 +00:00
|
|
|
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)
|
|
|
|
|
2022-01-03 07:29:42 +00:00
|
|
|
libs_gamecode_test_test_stack_SOURCES= \
|
|
|
|
libs/gamecode/test/test-stack.c
|
|
|
|
libs_gamecode_test_test_stack_LDADD= $(test_gamecode_libs)
|
|
|
|
libs_gamecode_test_test_stack_DEPENDENCIES= $(test_gamecode_libs)
|
|
|
|
|
2022-01-03 05:41:29 +00:00
|
|
|
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)
|
2022-01-03 14:50:38 +00:00
|
|
|
|
|
|
|
libs_gamecode_test_test_vector_SOURCES= \
|
|
|
|
libs/gamecode/test/test-vector.c
|
|
|
|
libs_gamecode_test_test_vector_LDADD= $(test_gamecode_libs)
|
|
|
|
libs_gamecode_test_test_vector_DEPENDENCIES= $(test_gamecode_libs)
|