mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-03-09 10:50:56 +00:00
Hit a show stopper when it came to swizzle (not implemented yet). I guess I know what I need to do next :P.
35 lines
1.1 KiB
Text
35 lines
1.1 KiB
Text
libs_gamecode_tests = \
|
|
libs/gamecode/test/test-load \
|
|
libs/gamecode/test/test-math \
|
|
libs/gamecode/test/test-stack \
|
|
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_math_SOURCES= \
|
|
libs/gamecode/test/test-math.c
|
|
libs_gamecode_test_test_math_LDADD= $(test_gamecode_libs)
|
|
libs_gamecode_test_test_math_DEPENDENCIES= $(test_gamecode_libs)
|
|
|
|
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)
|
|
|
|
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)
|