From 309692778f084cc6e1e18233c07fb5dcdaf28371 Mon Sep 17 00:00:00 2001 From: Kristofers Solo Date: Thu, 24 Nov 2022 13:13:19 +0200 Subject: [PATCH] Added Makefile --- Makefile | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..1320b73 --- /dev/null +++ b/Makefile @@ -0,0 +1,18 @@ +run: + cargo run + +build: + cargo build --release + +install: + cargo build --release + cp target/release/blockishfire ~/.local/bin/blockishfire + +uninstall: + rm ~/.local/bin/blockishfire + +help: + @echo "Usage:" + @echo " * make run: run in debug" + @echo " * make install: install blockishfire to ~/.local/bin/" + @echo " * make uninstall: uninstall blockishfire"