gitui/Makefile
2020-03-27 01:11:15 +01:00

20 lines
336 B
Makefile

debug:
GITUI_LOGGING=true cargo run --features=timing
test:
cargo test --workspace -- --test-threads=1
clippy:
cargo clean
cargo clippy --all-features
clippy-pedantic:
cargo clean
cargo clippy --all-features -- -W clippy::pedantic
install:
cargo install --path "."
install-debug:
cargo install --features=timing --path "."