blob: e448e5ac709df61de2e146422caca0e3d5286cf0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
.PHONY: assets clean all
all: assets
assets: menu/book/book_1.webp
clean:
rm -f menu/book/book_*.webp
menu/book/book_1.webp:
@echo Downloading recipe book...
@mkdir -p menu/book
@curl -L https://s.metamuffin.org/static/hurrycurry/book.webp.tar.zst | tar -xC menu/book
|