aboutsummaryrefslogtreecommitdiff
path: root/2024/23/Makefile
diff options
context:
space:
mode:
authorSebastiano Tronto <sebastiano@tronto.net>2024-12-23 07:55:11 +0100
committerSebastiano Tronto <sebastiano@tronto.net>2024-12-23 07:55:11 +0100
commit21e1237e93703f632253f042bd5877998d81c507 (patch)
tree671c10254bbc2ed407d8bfa99819460e56c13211 /2024/23/Makefile
parentcffdd7d528607f7281fc0a1fed9195e711c1b70f (diff)
downloadaoc-21e1237e93703f632253f042bd5877998d81c507.tar.gz
aoc-21e1237e93703f632253f042bd5877998d81c507.zip
Day 23 2024
Diffstat (limited to '2024/23/Makefile')
-rw-r--r--2024/23/Makefile11
1 files changed, 11 insertions, 0 deletions
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 @@
1CC=g++ -std=c++20 -g -Wall
2
3a:
4 ${CC} -o a.out day23a.cpp
5 ./a.out
6
7b:
8 ${CC} -o b.out day23b.cpp
9 ./b.out
10
11.PHONY: a b

Generated with cgit - Back to sebastiano.tronto.net