vpncloud/Makefile

23 lines
233 B
Makefile
Raw Normal View History

2016-07-02 09:24:49 +00:00
.PHONY: default
default: test build
.PHONY: build
build:
cargo build --release
.PHONY: test
test:
cargo test
.PHONY: bench
bench:
cargo bench --features bench
2016-08-05 06:50:22 +00:00
.PHONY: deb
deb:
make -C deb
2016-07-02 09:24:49 +00:00
.PHONY: clean
clean:
rm -rf target