commit 058bb86d18d13ddc95edff5ce1caf852a71b8584
parent 1ff993081e433d70b3e496988c2e6114e88fac38
Author: Vincent Forest <vincent.forest@meso-star.com>
Date: Fri, 30 Jun 2023 15:48:04 +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
@@ -128,7 +128,7 @@ build_tests: build_library $(TEST_DEP) .test
test: build_tests
@$(SHELL) make.sh run_test src/test_aw_mtl.c src/test_aw_obj.c
-.test: Makefile
+.test: Makefile make.sh
@$(SHELL) make.sh config_test $(TEST_SRC) > $@
clean_test: