diff options
author | metamuffin <metamuffin@disroot.org> | 2024-07-15 20:49:45 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2024-07-15 20:49:45 +0200 |
commit | 53bd35b77a1240bc0d571d1e7cff3591ca6fde9a (patch) | |
tree | 49646c59e3786436655b809c09d113e6124eaa63 /client | |
parent | c82a2bf203f3495865fd40527fa41a9e32f7aa9c (diff) | |
download | hurrycurry-53bd35b77a1240bc0d571d1e7cff3591ca6fde9a.tar hurrycurry-53bd35b77a1240bc0d571d1e7cff3591ca6fde9a.tar.bz2 hurrycurry-53bd35b77a1240bc0d571d1e7cff3591ca6fde9a.tar.zst |
texture compose system
Diffstat (limited to 'client')
-rw-r--r-- | client/makefile | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/client/makefile b/client/makefile new file mode 100644 index 00000000..e448e5ac --- /dev/null +++ b/client/makefile @@ -0,0 +1,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 |