advent-of-code/2021/day-09/Justfile
Patrick Auernig 4b895a6c66 Update solution for 2021 day 09
- close the file handle
- #define max map x and y values
2021-12-09 21:24:53 +01:00

7 lines
196 B
Makefile

@part PART INPUT_FILE="inputs/puzzle.txt":
gcc -std=c17 -Werror -Wextra -pedantic -o part_{{PART}} common.c part_{{PART}}.c
./part_{{PART}} {{INPUT_FILE}}
clean:
rm part_one part_two