aboutsummaryrefslogtreecommitdiff
path: root/2024/11/Makefile
diff options
context:
space:
mode:
authorSebastiano Tronto <sebastiano@tronto.net>2024-12-11 07:03:12 +0100
committerSebastiano Tronto <sebastiano@tronto.net>2024-12-11 07:03:12 +0100
commit3418444a8da97e5a05f87f9737bed94edd43ec60 (patch)
treeb3ba5bd74f18179be287f367f70934b08fb29a15 /2024/11/Makefile
parent6cee2c54045d253dc14c808f1e4f25765a675a56 (diff)
downloadaoc-3418444a8da97e5a05f87f9737bed94edd43ec60.tar.gz
aoc-3418444a8da97e5a05f87f9737bed94edd43ec60.zip
Day 11 2024
Diffstat (limited to '2024/11/Makefile')
-rw-r--r--2024/11/Makefile24
1 files changed, 24 insertions, 0 deletions
diff --git a/2024/11/Makefile b/2024/11/Makefile
new file mode 100644
index 0000000..a5d27bb
--- /dev/null
+++ b/2024/11/Makefile
@@ -0,0 +1,24 @@
1CC=g++ -std=c++20 -g -Wall
2
3a:
4 ${CC} -o a.out day11a.cpp
5
6b:
7 ${CC} -o b.out day11b.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