summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorVincent Douillet <vincent@vdouillet.fr>2021-12-03 17:01:37 +0100
committerVincent Douillet <vincent@vdouillet.fr>2021-12-03 17:01:37 +0100
commit736823f313bd2e00e49a1b52aaf0ea68a79db438 (patch)
tree5cf54f57e5c2afd8ea22baacb3ffa05a76a59fcc /Makefile
parent04e79fa276ae1c3620868d85941b2c7b7c11222a (diff)
improve input handling & merge part 1 and 2 for the first days
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile12
1 files changed, 3 insertions, 9 deletions
diff --git a/Makefile b/Makefile
index baca8e6..61cd769 100644
--- a/Makefile
+++ b/Makefile
@@ -1,20 +1,14 @@
CC=cc
CFLAGS=-std=c1x -W -Wall -g
LDFLAGS=
-EXEC=011 012 021 022 03
+EXEC=01 02 03
all: $(EXEC)
-011: input.o 011.o
+01: input.o 01.o
$(CC) -o $@ $> $(LDFLAGS)
-012: input.o 012.o
- $(CC) -o $@ $> $(LDFLAGS)
-
-021: input.o 021.o
- $(CC) -o $@ $> $(LDFLAGS)
-
-022: input.o 022.o
+02: input.o 02.o
$(CC) -o $@ $> $(LDFLAGS)
03: input.o 03.o