libmedium/Makefile
ngn f8a1e6f79c
general cleanup
Signed-off-by: ngn <ngn@ngn.tf>
2025-01-20 04:31:15 +03:00

21 lines
288 B
Makefile

all:
cargo build
clean:
cargo clean
check:
cargo check --workspace --tests --all-features
lint:
cargo fmt -v --all -- --emit files
cargo clippy --workspace --tests --all-features
run:
cargo run
test:
cargo test --all-features --no-fail-fast
.PHONY: clean check lint run test