1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-06-02 13:29:24 +00:00
actix-web/Makefile

15 lines
234 B
Makefile
Raw Permalink Normal View History

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)
doc: build
cargo doc --no-deps $(CARGO_FLAGS)