aoc

Advent of Code Solutions
git clone git://git.alexkarle.com.com/aoc
Log | Files | Refs | README | LICENSE

commit d19ba5af6e01d2cd8d38d1b0529aa35f282e9e2b (patch)
parent d01e94705e0b6c140e8219c081fe5c2ca73e4888
Author: Alex Karle <alex@alexkarle.com>
Date:   Sat, 11 Dec 2021 16:08:50 -0500

make: Add some newlines to highlight what's done in C

It's easier to see (hah) what's done in C if we split each day onto a
line!

Diffstat:
MMakefile | 6+++++-
1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/Makefile b/Makefile @@ -11,7 +11,11 @@ CFLAGS = -g -O2 -Wall -Wpedantic -Wextra DAY = * -TARGETS = 01/a 01/b 02/a 02/b 03/a 05/a 05/b 06/a 06/b +TARGETS = 01/a 01/b \ + 02/a 02/b \ + 03/a \ + 05/a 05/b \ + 06/a 06/b .PHONY: build build: $(TARGETS)