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

Generated with cgit - Back to sebastiano.tronto.net