blob: 5c5e8c73bc195b9e72aa39aa113bcf3631f2519c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
Makefile.am.test: ${TEST_SOURCE_DEPS}
${TEST_SCRIPT_DIR}/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 *~
|