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 /makefile | |
parent | c82a2bf203f3495865fd40527fa41a9e32f7aa9c (diff) | |
download | hurrycurry-53bd35b77a1240bc0d571d1e7cff3591ca6fde9a.tar hurrycurry-53bd35b77a1240bc0d571d1e7cff3591ca6fde9a.tar.bz2 hurrycurry-53bd35b77a1240bc0d571d1e7cff3591ca6fde9a.tar.zst |
texture compose system
Diffstat (limited to 'makefile')
-rw-r--r-- | makefile | 15 |
1 files changed, 6 insertions, 9 deletions
@@ -1,10 +1,7 @@ -.PHONY: client-assets clean -client-assets: client/menu/book/book_1.webp +.PHONY: all client light-client +all: client light-client -clean: - rm client/menu/book/book_*.webp - -client/menu/book/book_1.webp: - @echo Downloading recipe book... - @mkdir -p client/menu/book - @curl -L https://s.metamuffin.org/static/hurrycurry/book.webp.tar.zst | tar -xC client/menu/book +client: + make -C client all +light-client: + make -C light-client all |