summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile28
1 files changed, 28 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..08a16cf
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,28 @@
+all: build test
+
+build:
+ @cargo build
+
+check:
+ @cargo check
+
+doc:
+ @cargo doc
+
+test:
+ @cargo test
+ @cargo test --all-features
+
+format:
+ @rustup component add rustfmt 2> /dev/null
+ @cargo fmt --all
+
+format-check:
+ @rustup component add rustfmt 2> /dev/null
+ @cargo fmt --all -- --check
+
+lint:
+ @rustup component add clippy 2> /dev/null
+ @cargo clippy
+
+.PHONY: all check doc test format format-check lint