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