add makefile for simpler compilation

master
Ales Katona 6 years ago
parent dec187c67b
commit d0b42be68b
Signed by: almindor
GPG Key ID: 08C459E2D8ABB7E8

@ -0,0 +1,15 @@
CARGO=cargo
BACKENDS=backend_piston,backend_gilrs
all:
cargo build --features=${BACKENDS}
test:
cargo test --features=${BACKENDS}
doc:
cargo doc --features=${BACKENDS}
clean:
cargo clean
Loading…
Cancel
Save