blob: 70382b07cdb0d8f9003844f2ec4b19e11ec0862f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
Makefile.am.test: ${pracrod_SOURCES} ${EXTRA_DIST}
$(top_srcdir)/../tools/testlist > Makefile.am.test
@touch Makefile.am
test: Makefile.am.test $(TESTFILES)
@echo "All tests done."
test_clean:
rm -f $(TESTFILES) $(TESTLOGS)
TESTLOGS = `for F in ${TESTFILES}; do echo $$F.log; done`
CLEANFILES = $(TESTFILES) $(TESTLOGS) Makefile.am.test *~
|