1
0
mirror of https://github.com/actix/actix-extras.git synced 2025-06-25 01:51:23 +02:00

more guide

This commit is contained in:
Nikolay Kim
2017-11-28 18:00:10 -08:00
parent 987b275c3f
commit 6f5b58b691
3 changed files with 36 additions and 7 deletions

View File

@ -1,4 +1,4 @@
.PHONY: default build test doc clean
.PHONY: default build test doc book clean
CARGO_FLAGS := --features "$(FEATURES)"
@ -20,3 +20,7 @@ clippy:
doc: build
cargo doc --no-deps $(CARGO_FLAGS)
cd guide; mdbook build -d ../target/doc/guide/; cd ..
book:
cd guide; mdbook build -d ../target/doc/guide/; cd ..