1
0
mirror of https://github.com/dswd/vpncloud.git synced 2025-01-07 21:07:52 +00:00
vpncloud/Makefile
2016-07-02 11:26:40 +02:00

22 lines
289 B
Makefile

.PHONY: default
default: test build
.PHONY: build
build:
git submodule update --init
cargo build --release
.PHONY: test
test:
git submodule update --init
cargo test
.PHONY: bench
bench:
git submodule update --init
cargo bench --features bench
.PHONY: clean
clean:
rm -rf target