diff options
-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 $@ $< |
index : mlib | ||
A supplimentary C standard library | Thomas Voss |
aboutsummaryrefslogtreecommitdiff |
-rw-r--r-- | Makefile | 4 |
@@ -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 $@ $< |