diff options
| author | Sebastiano Tronto <sebastiano@tronto.net> | 2024-12-23 07:55:11 +0100 |
|---|---|---|
| committer | Sebastiano Tronto <sebastiano@tronto.net> | 2024-12-23 07:55:11 +0100 |
| commit | 21e1237e93703f632253f042bd5877998d81c507 (patch) | |
| tree | 671c10254bbc2ed407d8bfa99819460e56c13211 /2024/23/Makefile | |
| parent | cffdd7d528607f7281fc0a1fed9195e711c1b70f (diff) | |
| download | aoc-21e1237e93703f632253f042bd5877998d81c507.tar.gz aoc-21e1237e93703f632253f042bd5877998d81c507.zip | |
Day 23 2024
Diffstat (limited to '2024/23/Makefile')
| -rw-r--r-- | 2024/23/Makefile | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/2024/23/Makefile b/2024/23/Makefile new file mode 100644 index 0000000..ad85264 --- /dev/null +++ b/2024/23/Makefile | |||
| @@ -0,0 +1,11 @@ | |||
| 1 | CC=g++ -std=c++20 -g -Wall | ||
| 2 | |||
| 3 | a: | ||
| 4 | ${CC} -o a.out day23a.cpp | ||
| 5 | ./a.out | ||
| 6 | |||
| 7 | b: | ||
| 8 | ${CC} -o b.out day23b.cpp | ||
| 9 | ./b.out | ||
| 10 | |||
| 11 | .PHONY: a b | ||
