From 8814706d047e64078683ee77780f5256f0aedb16 Mon Sep 17 00:00:00 2001 From: christophe <christophe.junke@cea.fr> Date: Wed, 19 Feb 2025 15:09:06 +0100 Subject: [PATCH] Makefile: force tests for both versions of eclipse The dependencies v5-test and v7-test both depends on test but with different environment variables; that's however not sufficent for Make, which consider that once test is done, it is not necessary to execute it again. --- Makefile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index d79d1b2e8..c2dd2f47d 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -.PHONY: all bundle clean clean_bundle simplex simplex_epilog +.PHONY: all bundle clean clean_bundle simplex simplex_epilog tests # NB. This makefile uses rules like v5-% and v7-% to setup # the required environment before executing the associated @@ -152,7 +152,9 @@ archives: test: ./test.sh $(BUNDLE_ROOT)/colibri -j2 -tests: v5-test v7-test +tests: + make v5-test + make v7-test # ================================================== # RELEASE -- GitLab