aboutsummaryrefslogtreecommitdiff
path: root/2024/20/Makefile
diff options
context:
space:
mode:
authorSebastiano Tronto <sebastiano@tronto.net>2024-12-20 07:06:29 +0100
committerSebastiano Tronto <sebastiano@tronto.net>2024-12-20 07:06:29 +0100
commitecb8bdb0b63536916a3a3d55fd4ebbf7aeb21997 (patch)
treeb2a2c1e3b8eaa69b1ad7e7b07be826671ce428e7 /2024/20/Makefile
parent3c8331701f9f77c28847d678b935d5efb9a5d575 (diff)
downloadaoc-ecb8bdb0b63536916a3a3d55fd4ebbf7aeb21997.tar.gz
aoc-ecb8bdb0b63536916a3a3d55fd4ebbf7aeb21997.zip
Day 20 2024
Diffstat (limited to '2024/20/Makefile')
-rw-r--r--2024/20/Makefile11
1 files changed, 11 insertions, 0 deletions
diff --git a/2024/20/Makefile b/2024/20/Makefile
new file mode 100644
index 0000000..0fd3d80
--- /dev/null
+++ b/2024/20/Makefile
@@ -0,0 +1,11 @@
1CC=g++ -std=c++20 -g -Wall
2
3a:
4 ${CC} -o a.out day20a.cpp
5 ./a.out
6
7b:
8 ${CC} -o b.out day20b.cpp
9 ./b.out
10
11.PHONY: a b

Generated with cgit - Back to sebastiano.tronto.net