From 633104e38f45250289ab245ec16967163b308218 Mon Sep 17 00:00:00 2001 From: Sebastiano Tronto Date: Sun, 22 Dec 2024 08:54:33 +0100 Subject: Day 22 2024, but it's slow --- 2024/22/Makefile | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 2024/22/Makefile (limited to '2024/22/Makefile') diff --git a/2024/22/Makefile b/2024/22/Makefile new file mode 100644 index 0000000..d2a55c5 --- /dev/null +++ b/2024/22/Makefile @@ -0,0 +1,11 @@ +CC=g++ -std=c++20 -g -Wall + +a: + ${CC} -o a.out day22a.cpp + ./a.out + +b: + ${CC} -o b.out day22b.cpp + ./b.out + +.PHONY: a b -- cgit v1.3