From c1948b954da795513e745db5f913f11d0dc5bd0c Mon Sep 17 00:00:00 2001 From: Milan Skocic Date: Thu, 21 Nov 2024 10:37:03 +0100 Subject: [PATCH] C code: update Makefile. --- C/Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/C/Makefile b/C/Makefile index e5a6cbf..d43d14b 100644 --- a/C/Makefile +++ b/C/Makefile @@ -12,7 +12,9 @@ SLIB=$(BUILD_DIR)/$(LIBNAME).a .PHONY: clean example -all: build static shared +all: $(LIBNAME) + +$(LIBNAME): build static shared # ---------------------------------------------------------------------