From 56d350f318f8cf9b580852b123d505845abad84e Mon Sep 17 00:00:00 2001 From: Vincent Douillet Date: Sat, 3 Dec 2022 22:00:50 +0100 Subject: day 3 --- Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index b42f264..088ac94 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ CC=cc CFLAGS=-std=c1x -W -Wall -g -D_GNU_SOURCE LDFLAGS= -EXEC=01 01bis 02 +EXEC=01 01bis 02 03 all: $(EXEC) @@ -17,5 +17,8 @@ all: $(EXEC) 02: input.o 02.o $(CC) -o $@ $^ $(LDFLAGS) +03: input.o 03.o + $(CC) -o $@ $^ $(LDFLAGS) + clean: rm -rf *.o $(EXEC) -- cgit v1.2.3