From: wolf Date: Tue, 21 May 2002 06:58:14 +0000 (+0000) Subject: Add a rule that just prints out the names of the tests. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a09df7fe405d69c5c9bf555f20e44d892d3831bf;p=dealii-svn.git Add a rule that just prints out the names of the tests. git-svn-id: https://svn.dealii.org/trunk@5859 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/tests/Makefile.rules b/tests/Makefile.rules index 887c86abb3..b4726d7dde 100644 --- a/tests/Makefile.rules +++ b/tests/Makefile.rules @@ -130,7 +130,8 @@ veryclean: clean -rm -f *.exe *.testcase *.inp *.gpl *.eps *.gnuplot - +show-tests: + @echo $(tests) ############################################################ # Automatic generation of dependencies @@ -142,4 +143,4 @@ Makefile.depend: $(shell echo *.cc) @perl -pi -e 's/(^[^.]+)\.o:/\1.o \1.go:/;' $@ -.PHONY: report \ No newline at end of file +.PHONY: report show-tests