mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-02-24 20:51:35 +00:00
iqm and OpenGL use them, so they might come in handy. The tests use values from wikipedia and a couple extra.
23 lines
734 B
Makefile
23 lines
734 B
Makefile
AUTOMAKE_OPTIONS= foreign
|
|
|
|
INCLUDES= -I$(top_srcdir)/include
|
|
|
|
check_PROGRAMS=test-half test-qfs test-quat test-vrect
|
|
|
|
test_half_SOURCES=test-half.c
|
|
test_half_LDADD=$(top_builddir)/libs/util/libQFutil.la
|
|
test_half_DEPENDENCIES=$(top_builddir)/libs/util/libQFutil.la
|
|
|
|
test_qfs_SOURCES=test-qfs.c
|
|
test_qfs_LDADD=$(top_builddir)/libs/util/libQFutil.la
|
|
test_qfs_DEPENDENCIES=$(top_builddir)/libs/util/libQFutil.la
|
|
|
|
test_quat_SOURCES=test-quat.c
|
|
test_quat_LDADD=$(top_builddir)/libs/util/libQFutil.la
|
|
test_quat_DEPENDENCIES=$(top_builddir)/libs/util/libQFutil.la
|
|
|
|
test_vrect_SOURCES=test-vrect.c
|
|
test_vrect_LDADD=$(top_builddir)/libs/util/libQFutil.la
|
|
test_vrect_DEPENDENCIES=$(top_builddir)/libs/util/libQFutil.la
|
|
|
|
TESTS=$(check_PROGRAMS)
|