diff options
| author | Sebastiano Tronto <sebastiano@tronto.net> | 2024-12-19 06:32:23 +0100 |
|---|---|---|
| committer | Sebastiano Tronto <sebastiano@tronto.net> | 2024-12-19 06:32:23 +0100 |
| commit | 2882d009b115657afad463fadaa103ea54a920d8 (patch) | |
| tree | 114aee94e545725badec9d341fc1303f2b58d6c5 /2024/19/Makefile | |
| parent | 6bf92f2a2517f8eebddbdb139a877dcffd381edc (diff) | |
| download | aoc-2882d009b115657afad463fadaa103ea54a920d8.tar.gz aoc-2882d009b115657afad463fadaa103ea54a920d8.zip | |
Day 19 2024
Diffstat (limited to '2024/19/Makefile')
| -rw-r--r-- | 2024/19/Makefile | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/2024/19/Makefile b/2024/19/Makefile new file mode 100644 index 0000000..53608a6 --- /dev/null +++ b/2024/19/Makefile | |||
| @@ -0,0 +1,24 @@ | |||
| 1 | CC=g++ -std=c++20 -g -Wall | ||
| 2 | |||
| 3 | a: | ||
| 4 | ${CC} -o a.out day19a.cpp | ||
| 5 | |||
| 6 | b: | ||
| 7 | ${CC} -o b.out day19b.cpp | ||
| 8 | |||
| 9 | clean: | ||
| 10 | rm -f a b | ||
| 11 | |||
| 12 | atest: a | ||
| 13 | ./a.out | ||
| 14 | |||
| 15 | btest: b | ||
| 16 | ./b.out | ||
| 17 | |||
| 18 | arun: a | ||
| 19 | ./a.out < input | ||
| 20 | |||
| 21 | brun: b | ||
| 22 | ./b.out < input | ||
| 23 | |||
| 24 | .PHONY: a b clean atest btest arun brun | ||
