aboutsummaryrefslogtreecommitdiff
path: root/2024/22/Makefile
diff options
context:
space:
mode:
authorSebastiano Tronto <sebastiano@tronto.net>2024-12-22 08:54:33 +0100
committerSebastiano Tronto <sebastiano@tronto.net>2024-12-22 08:54:33 +0100
commit633104e38f45250289ab245ec16967163b308218 (patch)
tree5cb43a1ef46b84289969e31a1486e2cdfd40f67f /2024/22/Makefile
parent6cbc9b03a74bcb295271de36256318d6945a2963 (diff)
downloadaoc-633104e38f45250289ab245ec16967163b308218.tar.gz
aoc-633104e38f45250289ab245ec16967163b308218.zip
Day 22 2024, but it's slow
Diffstat (limited to '2024/22/Makefile')
-rw-r--r--2024/22/Makefile11
1 files changed, 11 insertions, 0 deletions
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 @@
1CC=g++ -std=c++20 -g -Wall
2
3a:
4 ${CC} -o a.out day22a.cpp
5 ./a.out
6
7b:
8 ${CC} -o b.out day22b.cpp
9 ./b.out
10
11.PHONY: a b

Generated with cgit - Back to sebastiano.tronto.net