summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorVincent Douillet <vincent@vdouillet.fr>2022-12-06 22:54:39 +0100
committerVincent Douillet <vincent@vdouillet.fr>2022-12-06 22:54:39 +0100
commit2490e48c629cc02af93f5fb685803a00725e3037 (patch)
tree22e3d43337ff459e8be17dfe1cbafbaf5af826c9 /Makefile
parent47fd551daab476421411749c5806b3c213cf0a70 (diff)
day 5 part 1
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 900eb92..aaf2651 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 03 04
+EXEC=01 01bis 02 03 04 05
all: $(EXEC)
@@ -23,5 +23,8 @@ all: $(EXEC)
04: input.o 04.o
$(CC) -o $@ $^ $(LDFLAGS)
+05: input.o 05.o
+ $(CC) -o $@ $^ $(LDFLAGS)
+
clean:
rm -rf *.o $(EXEC)