diff options
author | metamuffin <metamuffin@disroot.org> | 2024-10-01 11:54:23 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2024-10-01 11:54:23 +0200 |
commit | 4969d58718bf2155786cdcfac0f745d28b248de0 (patch) | |
tree | 20ac5d8d97899e337eaad67d347c016c273b2346 | |
parent | 01816315f5a30a2fdf7d6a2024b2973ff7e4bb41 (diff) | |
download | hurrycurry-4969d58718bf2155786cdcfac0f745d28b248de0.tar hurrycurry-4969d58718bf2155786cdcfac0f745d28b248de0.tar.bz2 hurrycurry-4969d58718bf2155786cdcfac0f745d28b248de0.tar.zst |
godot import in makefile
-rw-r--r-- | client/makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/client/makefile b/client/makefile index b7524ff0..bde22f11 100644 --- a/client/makefile +++ b/client/makefile @@ -14,7 +14,7 @@ # along with this program. If not, see <https://www.gnu.org/licenses/>. # .PHONY: assets clean all locales -all: assets locales icons/adaptive-background.png icons/adaptive-foreground.png +all: .godot/import-finished assets locales icons/adaptive-background.png icons/adaptive-foreground.png assets: menu/book/book_01.webp locales: $(patsubst ../locale/%.ini,po/%.po,$(wildcard ../locale/*.ini)) @@ -24,6 +24,10 @@ clean: rm -f menu/book/book_*.webp rm -f icons/adaptive-foreground.png icons/adaptive-background.png +.godot/import-finished: + godot --headless --import project.godot + touch $@ + menu/book/book_01.webp: @echo Downloading recipe book... @mkdir -p menu/book |