1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
clean: rm -rf $(BIN_DIR) cargo clean format: cargo fmt build: cargo build --release test: cargo test package: cargo package .PHONY: docs docs: cargo doc --no-deps rm -rf ./docs cp -pr ./target/doc ./docs