From efb205ef8efcbb03add18338f326b84c8051a725 Mon Sep 17 00:00:00 2001 From: wolf Date: Wed, 28 Sep 2005 23:58:52 +0000 Subject: [PATCH] Make target 'compare' phony, so as to force it to re-run every time we start the testsuite. git-svn-id: https://svn.dealii.org/trunk@11549 0785d39b-7218-0410-832d-ea1e28bc413d --- tests/Makefile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tests/Makefile b/tests/Makefile index 700464438e..6246d16c4c 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -125,10 +125,16 @@ all-headers: # proper version number), while for some historic reason we have named # the directories in the results/ tree with just icc7.1 (i.e. without # the preceding intel_). Thus, strip this part of the compiler name +# +# We declare this target as PHONY since we want it to re-run every time we +# start the testsuite. Reason being that this way we can make sure that all +# the proper links have been set for this run, even if some new tests have +# been added. compare: cd results; $(MAKE) rm -f compare ln -s results/$(TARGET)+$(GXX-VERSION:intel_%=%) compare +.PHONY: compare resultname: @echo $(TARGET)+$(GXX-VERSION) -- 2.39.5