diff options
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..c670957 --- /dev/null +++ b/Makefile @@ -0,0 +1,30 @@ +all: release + +release: + cargo build --release + +debug: + cargo build + +test: + cargo test + +check: + cargo check + +clean: + cargo clean + +fmt: + cargo fmt + +clippy: + cargo clippy -- -D warnings + +doc: + cargo doc --no-deps --open + +audit: + cargo deny check + +.PHONY: all release debug test test-release check clean fmt clippy doc audit |