b15f-rs/Makefile

24 lines
442 B
Makefile
Raw Permalink Normal View History

2022-12-09 19:49:54 +00:00
b15f:
cargo build
test:
cargo test
bench:
cargo bench
doc:
2022-12-19 13:23:57 +00:00
rm -rf docs
2022-12-17 18:22:10 +00:00
rm -rf target/doc
cargo doc --no-deps
2022-12-19 13:23:57 +00:00
mkdir -p docs
cp -r target/doc/* docs
echo "Adding index.html"
@echo "<!DOCTYPE html>" > docs/index.html
@echo "<meta http-equiv='refresh' content='0; URL=b15f/index.html'>" >> docs/index.html
@echo "<link rel='canonical' href='b15f/index.html'>" >> docs/index.html
2022-12-09 19:49:54 +00:00
all: b15f test
2022-12-19 13:23:57 +00:00
.PHONY: all