From cd0a09c8652ff94fa37c2b6d6d92dcb8937b275a Mon Sep 17 00:00:00 2001 From: Damien Elmes Date: Wed, 26 Feb 2020 17:52:25 +1000 Subject: [PATCH] fetch qt/ftl/repo on first build needs to happen prior to develop step to ensure qt translations get compiled into rspy --- Makefile | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index b74c1f877..7854d30a1 100644 --- a/Makefile +++ b/Makefile @@ -33,7 +33,7 @@ buildhash: fi .PHONY: develop -develop: pyenv buildhash +develop: pyenv buildhash prepare @set -eo pipefail && \ . pyenv/bin/activate && \ for dir in $(DEVEL); do \ @@ -47,6 +47,13 @@ run: develop echo "Starting Anki..."; \ qt/runanki $(RUNFLAGS) +.PHONY: prepare +prepare: rslib/ftl/repo qt/ftl/repo qt/po/repo + +rslib/ftl/repo: pull-i18n +qt/ftl/repo: pull-i18n +qt/po/repo: pull-i18n + .PHONY: build build: clean-dist build-rspy build-pylib build-qt add-buildhash @echo