help:
@grep -h -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-15s\033[0m %s\n", $$1, $$2}'
test:
@cargo test --release -- --nocapture
binary:
@cargo b --release --bin rusk-node
build-bench:
@cargo bench --no-run
bench:
@cargo bench
debug_with_telemetry:
cargo --config 'build.rustflags = ["--cfg", "tokio_unstable"]' build --features with_telemetry --bin rusk-node
clean:
@cargo clean
clippy:
@cargo clippy --all-features --release -- -D warnings
@cargo check --benches
doc:
@cargo doc --release
.PHONY: test help binary clean