mirror of
https://github.com/onyx-and-iris/aoc2023.git
synced 2024-11-15 15:10:49 +00:00
11 lines
107 B
Makefile
11 lines
107 B
Makefile
|
TEST="test.txt"
|
||
|
INPUT="input.txt"
|
||
|
|
||
|
test:
|
||
|
cat $(TEST) | go run .
|
||
|
|
||
|
run:
|
||
|
cat $(INPUT) | go run .
|
||
|
|
||
|
all: test
|