From 736823f313bd2e00e49a1b52aaf0ea68a79db438 Mon Sep 17 00:00:00 2001 From: Vincent Douillet Date: Fri, 3 Dec 2021 17:01:37 +0100 Subject: improve input handling & merge part 1 and 2 for the first days --- Makefile | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) (limited to 'Makefile') 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 -- cgit v1.2.3