color picker and palette editor
git clone https://git.lucas.co/cce-color-editor.git
chore: add Makefile
Makefile | 14 ++++++++++++++
1 file changed, 14 insertions(+)
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..ff106cb
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,14 @@
+.PHONY: build install run clean
+
+build:
+ cargo build --release
+
+install: build
+ mkdir -p ~/.local/bin
+ install -m 755 target/release/clear-color-interface ~/.local/bin/clear-color-interface
+
+run:
+ cargo run
+
+clean:
+ cargo clean