mirror of
https://github.com/actix/actix-web.git
synced 2024-11-18 15:41:17 +00:00
14 lines
238 B
Makefile
14 lines
238 B
Makefile
.PHONY: default build test doc book clean
|
|
|
|
CARGO_FLAGS := --features "$(FEATURES) alpn tls"
|
|
|
|
default: test
|
|
|
|
build:
|
|
cargo build $(CARGO_FLAGS)
|
|
|
|
test: build clippy
|
|
cargo test $(CARGO_FLAGS)
|
|
|
|
doc: build
|
|
cargo doc --no-deps $(CARGO_FLAGS)
|