Files
numa/Makefile
2026-03-10 05:04:31 +02:00

21 lines
201 B
Makefile

.PHONY: all build lint fmt check test clean
all: lint build
build:
cargo build
lint: fmt check
fmt:
cargo fmt --check
check:
cargo clippy -- -D warnings
test:
cargo test
clean:
cargo clean