b15f-rs/Makefile

18 lines
182 B
Makefile
Raw Normal View History

2022-12-09 19:49:54 +00:00
b15f:
cargo build
test:
cargo test
bench:
cargo bench
doc:
rm -rf doc
2022-12-17 18:22:10 +00:00
rm -rf target/doc
cargo doc --no-deps
2022-12-09 19:49:54 +00:00
cp -r target/doc .
all: b15f test
.PHONY: all