commit 6ba0d0239adc2682c5fb1ca260bbe23e35a726ea
parent ab84c44d26cfc615c8608a3a6a1bbd5f046e01d8
Author: Vincent Forest <vincent.forest@meso-star.com>
Date: Fri, 30 Jun 2023 15:56:50 +0200
Add the missing make.sh prerequisite to the .test target
The .test file must depend on the make.sh script that generates it.
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile b/Makefile
@@ -123,7 +123,7 @@ build_tests: build_library $(TEST_DEP) .test
test: build_tests
@$(SHELL) make.sh run_test $(TEST_SRC)
-.test: Makefile
+.test: Makefile make.sh
@$(SHELL) make.sh config_test $(TEST_SRC) > $@
clean_test: