aoc2023/day-15/makefile

11 lines
107 B
Makefile
Raw Normal View History

2023-12-15 17:19:33 +00:00
TEST="test.txt"
INPUT="input.txt"
test:
cat $(TEST) | go run .
run:
cat $(INPUT) | go run .
all: test