summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorVincent Douillet <vincent@vdouillet.fr>2022-12-04 16:47:47 +0100
committerVincent Douillet <vincent@vdouillet.fr>2022-12-04 16:47:47 +0100
commit47fd551daab476421411749c5806b3c213cf0a70 (patch)
treec52d4976f129b43417599d326356b5174dde5983 /Makefile
parent56d350f318f8cf9b580852b123d505845abad84e (diff)
day 4
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 088ac94..900eb92 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
+EXEC=01 01bis 02 03 04
all: $(EXEC)
@@ -20,5 +20,8 @@ all: $(EXEC)
03: input.o 03.o
$(CC) -o $@ $^ $(LDFLAGS)
+04: input.o 04.o
+ $(CC) -o $@ $^ $(LDFLAGS)
+
clean:
rm -rf *.o $(EXEC)