mirror of https://github.com/dswd/vpncloud.git
22 lines
289 B
Makefile
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
|