From d19ba5af6e01d2cd8d38d1b0529aa35f282e9e2b Mon Sep 17 00:00:00 2001 From: Alex Karle Date: Sat, 11 Dec 2021 16:08:50 -0500 Subject: [PATCH] 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! --- Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 691ad32..caa4293 100644 --- 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) -- libgit2 1.8.1