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

15 lines
234 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
2017-12-19 03:56:58 +01:00
CARGO_FLAGS := --features "$(FEATURES) alpn"
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)