aoc2023/day-13/makefile

10 lines
98 B
Makefile
Raw Permalink Normal View History

2023-12-14 03:44:14 +00:00
TEST="test.txt"
INPUT="input.txt"
test:
2023-12-18 19:12:56 +00:00
go run . < $(TEST)
2023-12-14 03:44:14 +00:00
run:
2023-12-18 19:12:56 +00:00
go run . < $(INPUT)
2023-12-14 03:44:14 +00:00
all: test