From 93f9d02e978d10b4ff02ac029b6a6eff3d3193cf Mon Sep 17 00:00:00 2001 From: Sebastiano Tronto Date: Mon, 9 Dec 2024 06:36:25 +0100 Subject: Day 9 2024 --- 2024/09/Makefile | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 2024/09/Makefile (limited to '2024/09/Makefile') diff --git a/2024/09/Makefile b/2024/09/Makefile new file mode 100644 index 0000000..89cd1b9 --- /dev/null +++ b/2024/09/Makefile @@ -0,0 +1,24 @@ +CC=g++ -std=c++20 -g -Wall + +a: + ${CC} -o a.out day09a.cpp + +b: + ${CC} -o b.out day09b.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