1
0
mirror of https://github.com/dswd/vpncloud.git synced 2025-01-06 12:27:52 +00:00
vpncloud/Makefile
Dennis Schwerdel 75c54998e6 Release 0.7.0
2016-08-05 08:50:22 +02:00

26 lines
320 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: deb
deb:
make -C deb
.PHONY: clean
clean:
rm -rf target