From f0159b7d36e2c81182f2d047a34bf883394894db Mon Sep 17 00:00:00 2001 From: Sebastiano Tronto Date: Wed, 25 Dec 2024 06:55:22 +0100 Subject: Day 25 2024 --- 2024/25/Makefile | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 2024/25/Makefile (limited to '2024/25/Makefile') diff --git a/2024/25/Makefile b/2024/25/Makefile new file mode 100644 index 0000000..67dcdd1 --- /dev/null +++ b/2024/25/Makefile @@ -0,0 +1,11 @@ +CC=g++ -std=c++20 -g -Wall + +a: + ${CC} -o a.out day25a.cpp + ./a.out + +b: + ${CC} -o b.out day25b.cpp + ./b.out + +.PHONY: a b -- cgit v1.3