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