gitui/Makefile
2020-04-08 00:21:08 +02:00

25 lines
369 B
Makefile

.PHONY: test
debug:
GITUI_LOGGING=true cargo run --features=timing
build-release:
cargo build --release
test:
cargo test --workspace
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 "."