RUSTFLAGS := -g
export RUSTFLAGS
all: build
build:
cargo build --release
clean:
rm -rf --one-file-system ./target
cov:
cargo llvm-cov test --release --text
fmt:
cargo fmt
lint:
cargo clippy
check:
cargo test --release -- --nocapture
.PHONY: all build clean cov fmt lint check