gitui/Makefile

30 lines
593 B
Makefile
Raw Normal View History

2020-03-22 04:45:42 +03:00
2020-03-28 22:47:29 +03:00
.PHONY: test
2020-03-22 04:45:42 +03:00
debug:
GITUI_LOGGING=true cargo run --features=timing
2020-04-06 11:18:26 +03:00
build-release:
cargo build --release
2020-04-08 01:44:13 +03:00
strip target/release/gitui
ls -lisah target/release/gitui
2020-04-08 12:49:07 +03:00
tar -C ./target/release/ -czvf ./target/gitui-mac.tar.gz ./gitui
ls -lisah ./target/gitui-mac.tar.gz
shasum -a 256 ./target/gitui-mac.tar.gz | awk '{printf $1}'
2020-04-06 11:18:26 +03:00
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 "."