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