Stop 'make clean' from deleting tests.

* Makefile.am (CLEANFILES): Fix the string replacements so that useful
tests do not get deleted.
This commit is contained in:
Timothy Sample 2019-05-16 23:29:19 -04:00
parent ff34039b62
commit e39abd1566
1 changed files with 4 additions and 2 deletions

View File

@ -244,8 +244,10 @@ EXTRA_DIST = \
CLEANFILES = \
$(GOBJECTS) \
$(bin_SCRIPTS) \
$(TESTS:tests/unit/%.scm=%.log) \
$(TESTS:tests/unit/%.scm=%.trs)
$(FULL_TESTS:tests/%.sh=tests/%.log) \
$(FULL_TESTS:tests/%.sh=tests/%.trs) \
$(UNIT_TESTS:tests/%.scm=tests/%.log) \
$(UNIT_TESTS:tests/%.scm=tests/%.trs)
clean-local:
$(MAKE) $(AM_MAKEFLAGS) -L -C tests/spec clean