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

11 lines
99 B
Makefile

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