diff options
| author | Sebastiano Tronto <sebastiano@tronto.net> | 2024-12-25 00:40:50 +0100 |
|---|---|---|
| committer | Sebastiano Tronto <sebastiano@tronto.net> | 2024-12-25 00:40:50 +0100 |
| commit | 19be9f44dbecdde03662be2248eda5b739d67038 (patch) | |
| tree | c38bfee181b388b777da27a63cae19ce7e7861eb /2024/24/Makefile | |
| parent | 21e1237e93703f632253f042bd5877998d81c507 (diff) | |
| download | aoc-19be9f44dbecdde03662be2248eda5b739d67038.tar.gz aoc-19be9f44dbecdde03662be2248eda5b739d67038.zip | |
Day 24 2024 still don't know how I managed to solve this
Diffstat (limited to '2024/24/Makefile')
| -rw-r--r-- | 2024/24/Makefile | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/2024/24/Makefile b/2024/24/Makefile new file mode 100644 index 0000000..1291678 --- /dev/null +++ b/2024/24/Makefile | |||
| @@ -0,0 +1,11 @@ | |||
| 1 | CC=g++ -std=c++20 -g -Wall | ||
| 2 | |||
| 3 | a: | ||
| 4 | ${CC} -o a.out day24a.cpp | ||
| 5 | ./a.out | ||
| 6 | |||
| 7 | b: | ||
| 8 | ${CC} -o b.out day24b.cpp | ||
| 9 | ./b.out | ||
| 10 | |||
| 11 | .PHONY: a b | ||
