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