aoc2023/day-18/makefile

11 lines
99 B
Makefile
Raw Normal View History

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