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