1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
.PHONY: test test: cargo clean cargo fmt --all -- --check cargo clippy -- -D warnings cargo test .PHONY: build build: test cargo clean cargo build --release .PHONY: install install: test cargo clean cargo install --path .