1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
.PHONY: build check test doc lint fmt clean distclean build: cargo build --all-features check: cargo check --all-features cargo check --no-default-features cargo check test: cargo test --all-features doc: RUSTDOCFLAGS="-D warnings" cargo doc --all-features --no-deps lint: cargo clippy --all-features -- -D warnings mdl . fmt: cargo fmt clean: cargo clean distclean: clean rm -rf Cargo.lock