diff options
author | Thomas Voss <mail@thomasvoss.com> | 2024-03-10 14:32:45 +0200 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2024-03-10 14:32:45 +0200 |
commit | 9ce9968745dc64fafc800d7ede0fb13bedc6f1db (patch) | |
tree | 15f127ea2dbee08855f8a178093b528e3727a3d5 | |
parent | 66b2913da7249fe5ef51da5c662ca27167940090 (diff) |
Build a test program
-rw-r--r-- | Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -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 $@ $< |