From ec95deb6f565d7994876932834489e7a22e19e11 Mon Sep 17 00:00:00 2001 From: Sebastiano Tronto Date: Fri, 13 Dec 2024 10:28:14 +0100 Subject: Day 12 2024, cleaned up part b --- 2024/12/Makefile | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 2024/12/Makefile (limited to '2024/12/Makefile') diff --git a/2024/12/Makefile b/2024/12/Makefile new file mode 100644 index 0000000..500a766 --- /dev/null +++ b/2024/12/Makefile @@ -0,0 +1,24 @@ +CC=g++ -std=c++20 -g -Wall + +a: + ${CC} -o a.out day12a.cpp + +b: + ${CC} -o b.out day12b.cpp + +clean: + rm -f a b + +atest: a + ./a.out + +btest: b + ./b.out + +arun: a + ./a.out < input + +brun: b + ./b.out < input + +.PHONY: a b clean atest btest arun brun -- cgit v1.3