commit d1fb0c327a04fe320eaaec273c4b47bd9b545748
parent 1a0f00dabf760c1816390ee17d201a75eda28250
Author: Vincent Forest <vincent.forest@meso-star.com>
Date: Wed, 18 Oct 2023 11:39:50 +0200
Fix the Makefile targets used to link tests
These targets must depend on the built library to force its execution in
the event of a library change.
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile b/Makefile
@@ -147,5 +147,5 @@ $(TEST_OBJ):
test_aw \
test_aw_mtl \
test_aw_obj \
-: config.mk aw-local.pc
+: config.mk aw-local.pc $(LIBNAME)
$(CC) $(CFLAGS_EXE) -o $@ src/$@.o $(LDFLAGS_EXE) $(AW_LIBS) $(RSYS_LIBS)