1
0
mirror of https://github.com/actix/actix-extras.git synced 2025-01-23 15:24:36 +01:00
actix-extras/Makefile

15 lines
238 B
Makefile
Raw Normal View History

2017-11-28 18:00:10 -08:00
.PHONY: default build test doc book clean
2017-09-30 09:10:03 -07:00
2018-07-21 04:19:02 -07:00
CARGO_FLAGS := --features "$(FEATURES) alpn tls"
2017-09-30 09:10:03 -07:00
default: test
build:
cargo build $(CARGO_FLAGS)
test: build clippy
cargo test $(CARGO_FLAGS)
doc: build
cargo doc --no-deps $(CARGO_FLAGS)