mirror of
https://github.com/ankitects/anki.git
synced 2025-11-09 06:07:11 -05:00
Merge pull request #487 from evandroforks/fix_rspy_makefile_rebuild
Fixed rspy/Makefile not rebuilding when rspy/src files are changed
This commit is contained in:
commit
a98ecb642c
1 changed files with 2 additions and 1 deletions
|
|
@ -31,7 +31,8 @@ DEPS := .build/tools .build/vernum ../meta/buildhash \
|
|||
$(wildcard $(QT_FTL_TEMPLATES)/*.ftl) \
|
||||
$(wildcard $(QT_FTL_LOCALES)/*/*.ftl) \
|
||||
$(shell ${FIND} ../rslib/src -name '*.rs') $(wildcard ../proto/*) \
|
||||
$(shell ${FIND} ../rslib/ftl -type f)
|
||||
$(shell ${FIND} ../rslib/ftl -type f) \
|
||||
$(shell ${FIND} ./src -type f)
|
||||
|
||||
.build/develop: $(DEPS)
|
||||
touch ../proto/backend.proto
|
||||
|
|
|
|||
Loading…
Reference in a new issue