From 18cea8c07a323f97162a75448147d71ee909887a Mon Sep 17 00:00:00 2001 From: The Magician Date: Thu, 7 Dec 2023 15:31:34 +0000 Subject: [PATCH] Add install target to Makefile --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..f080895 --- /dev/null +++ b/Makefile @@ -0,0 +1,4 @@ +install: + test -d ~/.local/bin/ || mkdir -p ~/.local/bin/ + cp zk ~/.local/bin/zk + chmod +x ~/.local/bin/zk