b15f:
cargo build
test:
cargo test
bench:
cargo bench
doc:
rm -rf docs
rm -rf target/doc
cargo doc --no-deps
mkdir -p docs
cp -r target/doc/* docs
echo "Adding index.html"
@echo "" > docs/index.html
@echo "" >> docs/index.html
@echo "" >> docs/index.html
all: b15f test
.PHONY: all