From d9fbaa155185220ee141f75d764890983ef35ca2 Mon Sep 17 00:00:00 2001 From: Sebastiano Tronto Date: Sat, 14 Dec 2024 08:38:52 +0100 Subject: Day 14 2024 (I did not like this one) --- 2024/14/Makefile | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 2024/14/Makefile (limited to '2024/14/Makefile') diff --git a/2024/14/Makefile b/2024/14/Makefile new file mode 100644 index 0000000..7f11c27 --- /dev/null +++ b/2024/14/Makefile @@ -0,0 +1,24 @@ +CC=g++ -std=c++20 -g -Wall + +a: + ${CC} -o a.out day14a.cpp + +b: + ${CC} -o b.out day14b.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