aoc2023/day-13/makefile

10 lines
106 B
Makefile
Raw Normal View History

2023-12-14 03:44:14 +00:00
TEST="test.txt"
INPUT="input.txt"
test:
cat $(TEST) | go run .
run:
cat $(INPUT) | go run .
all: test