From 9ce9968745dc64fafc800d7ede0fb13bedc6f1db Mon Sep 17 00:00:00 2001 From: Thomas Voss Date: Sun, 10 Mar 2024 14:32:45 +0200 Subject: Build a test program --- Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index ebbff3e..c55dda1 100644 --- a/Makefile +++ b/Makefile @@ -12,7 +12,9 @@ CC = gcc-13 CFLAGS = -std=c2x -Iinclude endif -all: $(objs) +all: out +out: $(objs) + $(CC) $(CFLAGS) -o $@ $^ %.o: %.c $(CC) $(CFLAGS) -c -o $@ $< -- cgit v1.2.3