From 5b72f356573ae1fc878a8318adf1fb295e036623 Mon Sep 17 00:00:00 2001 From: Zygo Blaxell Date: Sun, 30 May 2021 16:57:53 -0400 Subject: [PATCH] src: bees depends on libcrucible.a The dependency was missing, so changes to the library would not trigger a rebuild of the bees binary. Signed-off-by: Zygo Blaxell --- src/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Makefile b/src/Makefile index f6cc9bb..32e813d 100644 --- a/src/Makefile +++ b/src/Makefile @@ -55,7 +55,7 @@ $(PROGRAMS): ../bin/%: %.o $(PROGRAMS): ../lib/libcrucible.a -$(BEES): $(BEES_OBJS) bees-version.o bees-usage.o +$(BEES): $(BEES_OBJS) bees-version.o bees-usage.o ../lib/libcrucible.a $(CXX) $(BEES_CXXFLAGS) $(BEES_LDFLAGS) -o $@ $^ $(LIBS) clean: