mirror of
https://github.com/ankitects/anki.git
synced 2025-09-24 16:56:36 -04:00
fetch qt/ftl/repo on first build
needs to happen prior to develop step to ensure qt translations get compiled into rspy
This commit is contained in:
parent
46fadc2a82
commit
cd0a09c865
1 changed files with 8 additions and 1 deletions
9
Makefile
9
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
|
||||
|
|
Loading…
Reference in a new issue