1
0
mirror of https://github.com/fafhrd91/actix-web synced 2024-11-24 00:21:08 +01:00
actix-web/Makefile

15 lines
238 B
Makefile
Raw Normal View History

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