gitui/Makefile

20 lines
316 B
Makefile
Raw Normal View History

2020-03-22 04:45:42 +03:00
debug:
GITUI_LOGGING=true cargo run --features=timing
2020-03-26 12:08:28 +03:00
test:
cargo test --workspace
2020-03-26 12:08:28 +03:00
2020-03-27 02:41:59 +03:00
clippy:
cargo clean
2020-03-27 02:50:02 +03:00
cargo clippy --all-features
2020-03-27 02:41:59 +03:00
2020-03-27 03:11:15 +03:00
clippy-pedantic:
cargo clean
cargo clippy --all-features -- -W clippy::pedantic
2020-03-22 04:45:42 +03:00
install:
cargo install --path "."
install-debug:
cargo install --features=timing --path "."