libmedium/Makefile

21 lines
288 B
Makefile
Raw Normal View History

all:
2021-10-31 15:12:26 +05:30
cargo build
clean:
cargo clean
2021-10-31 15:12:26 +05:30
check:
2023-02-19 19:52:11 +05:30
cargo check --workspace --tests --all-features
lint:
2021-10-31 15:12:26 +05:30
cargo fmt -v --all -- --emit files
cargo clippy --workspace --tests --all-features
run:
2021-10-31 15:12:26 +05:30
cargo run
test:
2021-10-31 15:12:26 +05:30
cargo test --all-features --no-fail-fast
.PHONY: clean check lint run test