aoc2023/day-1/makefile

11 lines
99 B
Makefile
Raw Normal View History

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