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