8 lines
178 B
Makefile
8 lines
178 B
Makefile
INPUT = \
|
|
01/input.txt
|
|
|
|
.SUFFIXES: .txt
|
|
|
|
$(INPUT):
|
|
curl "https://adventofcode.com/2025/day/`echo $@|sed -r 's,^0*(\w+/input).txt$$,\1,'`" -H 'Cookie: session=$(SESSION)' > $@
|