From b1bdd9e056bf0391d34ea13bc85640fca293ff34 Mon Sep 17 00:00:00 2001 From: Zygo Blaxell Date: Tue, 20 Oct 2020 16:16:08 -0400 Subject: [PATCH] test: rebuild the tests if libcrucible.a changes Due to a missing dependency, tests are not rebuilt when the library changes, so tests return false results after library source changes. Signed-off-by: Zygo Blaxell --- test/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/Makefile b/test/Makefile index 94d1331..5814cd4 100644 --- a/test/Makefile +++ b/test/Makefile @@ -33,7 +33,7 @@ include depends.mk $(PROGRAMS:%=%.o): %.o: %.cc ../makeflags Makefile $(CXX) $(BEES_CXXFLAGS) -o $@ -c $< -$(PROGRAMS): %: %.o ../makeflags Makefile +$(PROGRAMS): %: %.o ../makeflags Makefile ../lib/libcrucible.a $(CXX) $(BEES_CXXFLAGS) $(BEES_LDFLAGS) -o $@ $< $(LIBS) %.txt: % Makefile FORCE