From 6cbc9b03a74bcb295271de36256318d6945a2963 Mon Sep 17 00:00:00 2001 From: Sebastiano Tronto Date: Sat, 21 Dec 2024 08:53:28 +0100 Subject: Day 21 2024 --- 2024/21/Makefile | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 2024/21/Makefile (limited to '2024/21/Makefile') diff --git a/2024/21/Makefile b/2024/21/Makefile new file mode 100644 index 0000000..baf7c67 --- /dev/null +++ b/2024/21/Makefile @@ -0,0 +1,11 @@ +CC=g++ -std=c++20 -g -Wall + +a: + ${CC} -o a.out day21a.cpp + ./a.out + +b: + ${CC} -o b.out day21b.cpp + ./b.out + +.PHONY: a b -- cgit v1.3