diff options
author | Vincent Douillet <vincent@vdouillet.fr> | 2021-12-03 17:01:37 +0100 |
---|---|---|
committer | Vincent Douillet <vincent@vdouillet.fr> | 2021-12-03 17:01:37 +0100 |
commit | 736823f313bd2e00e49a1b52aaf0ea68a79db438 (patch) | |
tree | 5cf54f57e5c2afd8ea22baacb3ffa05a76a59fcc /Makefile | |
parent | 04e79fa276ae1c3620868d85941b2c7b7c11222a (diff) |
improve input handling & merge part 1 and 2 for the first days
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 12 |
1 files changed, 3 insertions, 9 deletions
@@ -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 |