diff options
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 | ||
