From a88243e46bcd8e735d03ada6913846abefad142e Mon Sep 17 00:00:00 2001 From: seajee Date: Sun, 3 Aug 2025 00:36:22 +0200 Subject: [PATCH] Fix Makefile not checking timestamp of 'build' directory --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index f17f912..350c0fb 100644 --- a/Makefile +++ b/Makefile @@ -9,7 +9,7 @@ BUILDS=$(patsubst examples/%.c, build/%, $(EXAMPLES)) all: $(BUILDS) -build/%: examples/%.c sock.h build +build/%: examples/%.c sock.h | build $(CC) $(CFLAGS) -o $@ $< $(LDFLAGS) build: