mirror of
https://github.com/ankitects/anki.git
synced 2025-11-06 12:47:11 -05:00
exclude autogenerated src from build deps
prevents unnecessary rebuilds
This commit is contained in:
parent
47fcdd0723
commit
c5629e96df
1 changed files with 1 additions and 1 deletions
|
|
@ -25,7 +25,7 @@ develop: .build/vernum ftl/repo
|
|||
ftl/repo:
|
||||
(cd ftl && ./scripts/fetch-latest-translations)
|
||||
|
||||
ALL_SOURCE := $(shell ${FIND} src -type f) $(wildcard ftl/*.ftl)
|
||||
ALL_SOURCE := $(shell ${FIND} src -type f | egrep -v "i18n/autogen|i18n/ftl|_proto.rs") $(wildcard ftl/*.ftl)
|
||||
|
||||
# nightly currently required for ignoring files in rustfmt.toml
|
||||
RUST_TOOLCHAIN := $(shell cat rust-toolchain)
|
||||
|
|
|
|||
Loading…
Reference in a new issue