From 0405ec702329c5d64c384a6663d7fdd6a793f2dc Mon Sep 17 00:00:00 2001 From: The Magician Date: Tue, 21 Nov 2023 11:52:32 +0000 Subject: [PATCH] Add Makefile with install target --- Makefile | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..870e8b6 --- /dev/null +++ b/Makefile @@ -0,0 +1,3 @@ +install: + test -d ~/.local/bin || mkdir -p ~/.local/bin + cp $(shell find $(shell pwd) -type f -perm /u+x -not -path "$(shell pwd)/.git/*") ~/.local/bin