diff options
Diffstat (limited to 'client/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 |