2022-01-03 05:41:29 +00:00
|
|
|
libs_gamecode_tests = \
|
2022-01-04 08:50:49 +00:00
|
|
|
libs/gamecode/test/test-double \
|
|
|
|
libs/gamecode/test/test-float \
|
|
|
|
libs/gamecode/test/test-int \
|
2022-01-03 06:22:34 +00:00
|
|
|
libs/gamecode/test/test-load \
|
2022-01-04 08:50:49 +00:00
|
|
|
libs/gamecode/test/test-long \
|
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-04 08:50:49 +00:00
|
|
|
libs_gamecode_test_test_double_SOURCES= \
|
|
|
|
libs/gamecode/test/test-double.c
|
|
|
|
libs_gamecode_test_test_double_LDADD= $(test_gamecode_libs)
|
|
|
|
libs_gamecode_test_test_double_DEPENDENCIES= $(test_gamecode_libs)
|
|
|
|
|
|
|
|
libs_gamecode_test_test_float_SOURCES= \
|
|
|
|
libs/gamecode/test/test-float.c
|
|
|
|
libs_gamecode_test_test_float_LDADD= $(test_gamecode_libs)
|
|
|
|
libs_gamecode_test_test_float_DEPENDENCIES= $(test_gamecode_libs)
|
|
|
|
|
|
|
|
libs_gamecode_test_test_int_SOURCES= \
|
|
|
|
libs/gamecode/test/test-int.c
|
|
|
|
libs_gamecode_test_test_int_LDADD= $(test_gamecode_libs)
|
|
|
|
libs_gamecode_test_test_int_DEPENDENCIES= $(test_gamecode_libs)
|
|
|
|
|
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-04 08:50:49 +00:00
|
|
|
libs_gamecode_test_test_long_SOURCES= \
|
|
|
|
libs/gamecode/test/test-long.c
|
|
|
|
libs_gamecode_test_test_long_LDADD= $(test_gamecode_libs)
|
|
|
|
libs_gamecode_test_test_long_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)
|