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