aoc2023/day-12/makefile
2023-12-18 19:12:56 +00:00

10 lines
98 B
Makefile

TEST="test.txt"
INPUT="input.txt"
test:
go run . < $(TEST)
run:
go run . < $(INPUT)
all: test