blob: f38f56123901ae412c5601012f383c54fef4c80c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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 *~
|