aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile19
1 files changed, 19 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..57c8615
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,19 @@
+test: build-smoketest test-std test-no-std test-serde-no-std test-colors-no-std test-color-new-no-std test-alloc-no-std
+
+build-smoketest:
+ cargo build
+ cargo build --no-default-features
+ cargo build --no-default-features --target wasm32-wasi
+
+test-std:
+ cargo test
+test-no-std:
+ cargo test --no-default-features
+test-serde-no-std:
+ cargo test --no-default-features --features "serde"
+test-colors-no-std:
+ cargo test --no-default-features --features "colors"
+test-color-new-no-std:
+ cargo test --no-default-features --features "color-new"
+test-alloc-no-std:
+ cargo test --no-default-features --features "alloc"