aboutsummaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2024-07-15 20:49:45 +0200
committermetamuffin <metamuffin@disroot.org>2024-07-15 20:49:45 +0200
commit53bd35b77a1240bc0d571d1e7cff3591ca6fde9a (patch)
tree49646c59e3786436655b809c09d113e6124eaa63 /makefile
parentc82a2bf203f3495865fd40527fa41a9e32f7aa9c (diff)
downloadhurrycurry-53bd35b77a1240bc0d571d1e7cff3591ca6fde9a.tar
hurrycurry-53bd35b77a1240bc0d571d1e7cff3591ca6fde9a.tar.bz2
hurrycurry-53bd35b77a1240bc0d571d1e7cff3591ca6fde9a.tar.zst
texture compose system
Diffstat (limited to 'makefile')
-rw-r--r--makefile15
1 files changed, 6 insertions, 9 deletions
diff --git a/makefile b/makefile
index b9ddea19..873063aa 100644
--- a/makefile
+++ b/makefile
@@ -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