diff options
Diffstat (limited to 'config/conclude.in')
-rw-r--r-- | config/conclude.in | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/config/conclude.in b/config/conclude.in index 39da813..db45f5b 100644 --- a/config/conclude.in +++ b/config/conclude.in @@ -20,7 +20,8 @@ TAGS: $(LIB_SRC) -etags $(LIB_SRC) # Runs each test in order, passing $(TEST_FLAGS) to the program. -test _test: $(PROGS) +tests: $(TESTS) +test _test: tests @for test in $(TESTS) dummy; do \ if test $$test != dummy; then \ echo "Testing $$test $(TEST_FLAGS)"; \ @@ -72,7 +73,7 @@ mostlyclean: # is part of the HDF5 distribution. # clean: mostlyclean - $(RM) $(LIB) $(PROGS) $(CLEAN) + $(RM) $(LIB) $(TESTS) $(PROGS) $(CLEAN) # Like `clean' except it also removes files that were created by running # configure. If you've unpacked the source and built HDF5 without creating |