Add a Makefile.

This commit is contained in:
Damir Jelić 2019-11-24 22:43:36 +01:00
parent 4daea54a33
commit 3afe44e47a

13
Makefile Normal file
View file

@ -0,0 +1,13 @@
test:
cargo test
coverage:
cargo tarpaulin
clean:
cargo clean
format:
cargo fmt
.PHONY: clean test coverage