aoc2023/day-18/makefile
2023-12-22 21:57:00 +00:00

11 lines
99 B
Makefile

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