2017-11-29 02:00:10 +00:00
|
|
|
.PHONY: default build test doc book clean
|
2017-09-30 16:10:03 +00:00
|
|
|
|
2017-12-19 02:56:58 +00:00
|
|
|
CARGO_FLAGS := --features "$(FEATURES) alpn"
|
2017-09-30 16:10:03 +00:00
|
|
|
|
|
|
|
default: test
|
|
|
|
|
|
|
|
build:
|
|
|
|
cargo build $(CARGO_FLAGS)
|
|
|
|
|
|
|
|
test: build clippy
|
|
|
|
cargo test $(CARGO_FLAGS)
|
|
|
|
|
2017-10-26 13:12:23 +00:00
|
|
|
skeptic:
|
|
|
|
USE_SKEPTIC=1 cargo test $(CARGO_FLAGS)
|
|
|
|
|
2017-09-30 16:10:03 +00:00
|
|
|
# cd examples/word-count && python setup.py install && pytest -v tests
|
|
|
|
|
|
|
|
clippy:
|
|
|
|
if $$CLIPPY; then cargo clippy $(CARGO_FLAGS); fi
|
|
|
|
|
|
|
|
doc: build
|
|
|
|
cargo doc --no-deps $(CARGO_FLAGS)
|
2017-11-29 02:00:10 +00:00
|
|
|
cd guide; mdbook build -d ../target/doc/guide/; cd ..
|
|
|
|
|
|
|
|
book:
|
|
|
|
cd guide; mdbook build -d ../target/doc/guide/; cd ..
|