aboutsummaryrefslogtreecommitdiff
path: root/2024/09/Makefile
diff options
context:
space:
mode:
authorSebastiano Tronto <sebastiano@tronto.net>2024-12-09 06:36:25 +0100
committerSebastiano Tronto <sebastiano@tronto.net>2024-12-09 06:36:25 +0100
commit93f9d02e978d10b4ff02ac029b6a6eff3d3193cf (patch)
tree9ba15fe751f8ff4d94d7995191b76286e0d83343 /2024/09/Makefile
parenta299e1723f0a700a892720badab2e06a202d1eda (diff)
downloadaoc-93f9d02e978d10b4ff02ac029b6a6eff3d3193cf.tar.gz
aoc-93f9d02e978d10b4ff02ac029b6a6eff3d3193cf.zip
Day 9 2024
Diffstat (limited to '2024/09/Makefile')
-rw-r--r--2024/09/Makefile24
1 files changed, 24 insertions, 0 deletions
diff --git a/2024/09/Makefile b/2024/09/Makefile
new file mode 100644
index 0000000..89cd1b9
--- /dev/null
+++ b/2024/09/Makefile
@@ -0,0 +1,24 @@
1CC=g++ -std=c++20 -g -Wall
2
3a:
4 ${CC} -o a.out day09a.cpp
5
6b:
7 ${CC} -o b.out day09b.cpp
8
9clean:
10 rm -f a b
11
12atest: a
13 ./a.out
14
15btest: b
16 ./b.out
17
18arun: a
19 ./a.out < input
20
21brun: b
22 ./b.out < input
23
24.PHONY: a b clean atest btest arun brun

Generated with cgit - Back to sebastiano.tronto.net