From a8a82a312170753e4cf535ff8468f35056c78c53 Mon Sep 17 00:00:00 2001 From: Bruno Raoult Date: Sat, 13 Jan 2024 10:58:08 +0100 Subject: [PATCH] Makefile: fix bin generation --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index f238e3a..b6f4f4c 100644 --- a/Makefile +++ b/Makefile @@ -212,7 +212,7 @@ cleanbin: cleanbindir: $(call rmdir,$(BINDIR),binaries) -$(BINDIR)/%: $(TESTDIR)/%.c libs | $(BINDIR) +$(BINDIR)/%: $(TESTDIR)/%.c $(SLIB) $(DLIB) | $(BINDIR) $(CC) $(CPPFLAGS) $(CFLAGS) $< $(CUTESTSRC) $(LDFLAGS) $(LIBS) -o $@ ##################################### pre-processed (.i) and assembler (.s) output