aoc2023/day-14/makefile

11 lines
107 B
Makefile
Raw Normal View History

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