summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorLuc Van Oostenryck <luc.vanoostenryck@gmail.com>2020-10-04 11:52:49 +0200
committerLuc Van Oostenryck <luc.vanoostenryck@gmail.com>2020-10-08 02:52:36 +0200
commita28fcdabb7cf5828caa061f69b30c889f49b18e0 (patch)
tree164012e65e3f6ae4b8e3d2b457b4db36a1bf15c4
parentbf0e2bd3c86ae40a88575a565f176030b7fc63b6 (diff)
downloadsparse-a28fcdabb7cf5828caa061f69b30c889f49b18e0.tar.gz
build: rule for validation needs to be FORCEd
The Makefile contains a rule for launching a test from the testsuite but we want these tests to run even if when their dependencies are up-to-date. So, add 'FORCE' in the dependency list. Signed-off-by: Luc Van Oostenryck <luc.vanoostenryck@gmail.com>
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 09726ebb..ec576354 100644
--- a/Makefile
+++ b/Makefile
@@ -273,7 +273,7 @@ version.h: FORCE
check: all
$(Q)cd validation && ./test-suite
-validation/%: $(PROGRAMS)
+validation/%: $(PROGRAMS) FORCE
$(Q)validation/test-suite $*