diff options
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/Makefile.am b/Makefile.am index 45ef197..b5e77f9 100644 --- a/Makefile.am +++ b/Makefile.am @@ -100,11 +100,11 @@ SOURCES = \ chickadee/cli/bundle.scm TESTS = \ - tests/math/vector.scm \ - tests/data/array-list.scm \ - tests/data/heap.scm \ - tests/data/quadtree.scm \ - tests/data/queue.scm + tests/vector.scm \ + tests/array-list.scm \ + tests/heap.scm \ + tests/quadtree.scm \ + tests/queue.scm TEST_EXTENSIONS = .scm SCM_LOG_COMPILER = $(top_builddir)/test-env $(GUILE) @@ -143,7 +143,11 @@ EXTRA_DIST += \ examples/models/Suzanne/Suzanne.gltf \ examples/models/Suzanne/Suzanne_BaseColor.png \ examples/models/Suzanne/Suzanne_MetallicRoughness.png \ - tests/utils.scm + tests/utils.scm \ + $(TESTS) + +CLEANFILES += \ + $(TESTS:tests/%.scm=%.log) dist_pkgdata_DATA = \ data/AUTHORS \ |