aoc2023/day-17/makefile

11 lines
99 B
Makefile
Raw Permalink Normal View History

2023-12-22 21:56:07 +00:00
TEST="test.txt"
INPUT="input.txt"
test:
go run . < $(TEST)
run:
go run . < $(INPUT)
all: test