mirror of
https://github.com/italicsjenga/agb.git
synced 2024-12-23 00:01:34 +11:00
Update justfile to support the tracker crates
This commit is contained in:
parent
1aa8e5fd33
commit
992ce37464
5
justfile
5
justfile
|
@ -15,12 +15,14 @@ test:
|
|||
just _test-debug agb
|
||||
just _test-debug agb-fixnum
|
||||
just _test-debug agb-hashmap
|
||||
just _test-debug tracker/agb-tracker
|
||||
just _test-debug-arm agb
|
||||
just _test-debug tools
|
||||
|
||||
test-release:
|
||||
just _test-release agb
|
||||
just _test-release agb-fixnum
|
||||
just _test-debug tracker/agb-tracker
|
||||
just _test-release-arm agb
|
||||
|
||||
doctest-agb:
|
||||
|
@ -28,6 +30,7 @@ doctest-agb:
|
|||
|
||||
check-docs:
|
||||
(cd agb && cargo doc --target=thumbv6m-none-eabi --no-deps)
|
||||
(cd tracker/agb-tracker && cargo doc --target=thumbv6m-none-eabi --no-deps)
|
||||
just _build_docs agb-fixnum
|
||||
just _build_docs agb-hashmap
|
||||
|
||||
|
@ -120,7 +123,7 @@ gbafix *args:
|
|||
(cd agb-gbafix && cargo run --release -- {{args}})
|
||||
|
||||
_all-crates target:
|
||||
for CARGO_PROJECT_FILE in agb-*/Cargo.toml agb/Cargo.toml; do \
|
||||
for CARGO_PROJECT_FILE in agb-*/Cargo.toml agb/Cargo.toml tracker/agb-*/Cargo.toml; do \
|
||||
PROJECT_DIR=$(dirname "$CARGO_PROJECT_FILE"); \
|
||||
just "{{target}}" "$PROJECT_DIR" || exit $?; \
|
||||
done
|
||||
|
|
Loading…
Reference in a new issue