b15f-rs/Makefile
2022-12-17 19:22:10 +01:00

18 lines
182 B
Makefile

b15f:
cargo build
test:
cargo test
bench:
cargo bench
doc:
rm -rf doc
rm -rf target/doc
cargo doc --no-deps
cp -r target/doc .
all: b15f test
.PHONY: all