diff options
Diffstat (limited to 'tools')
-rw-r--r-- | tools/Makefile.am.test | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/tools/Makefile.am.test b/tools/Makefile.am.test new file mode 100644 index 0000000..f38f561 --- /dev/null +++ b/tools/Makefile.am.test @@ -0,0 +1,14 @@ +tests.make: ${pracrod_SOURCES} ${EXTRA_DIST} + $(top_srcdir)/../tools/testlist > Makefile.am.test + @touch Makefile.am + +test: tests.make $(TESTFILES) + @echo "All tests done." + +test_clean: + rm -f $(TESTFILES) $(TESTLOGS) + +TESTLOGS = `for F in ${TESTFILES}; do echo $$F.log; done` + +CLEANFILES = $(TESTFILES) $(TESTLOGS) tests.make *~ + |