diff options
author | metamuffin <metamuffin@disroot.org> | 2024-07-07 17:45:21 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2024-07-07 17:45:21 +0200 |
commit | b177459b5a8dd8136bc39435f7af29d7f700f1db (patch) | |
tree | c052eaa6582f02464cb66b0cd835d3e74d963ccc /makefile | |
parent | c07a13b1099c848394f410450b4b9b5bac57f26f (diff) | |
download | hurrycurry-b177459b5a8dd8136bc39435f7af29d7f700f1db.tar hurrycurry-b177459b5a8dd8136bc39435f7af29d7f700f1db.tar.bz2 hurrycurry-b177459b5a8dd8136bc39435f7af29d7f700f1db.tar.zst |
add recipe book asseets
Diffstat (limited to 'makefile')
-rw-r--r-- | makefile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/makefile b/makefile new file mode 100644 index 00000000..1eafe733 --- /dev/null +++ b/makefile @@ -0,0 +1,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 |