From c5e094ba970029222db77c1a7e7ae1be8be86b97 Mon Sep 17 00:00:00 2001 From: BitHeaven <33015545+BitHeaven-Official@users.noreply.github.com> Date: Fri, 19 Aug 2022 19:50:07 +0500 Subject: [PATCH] Create Makefile --- Makefile | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..accc574 --- /dev/null +++ b/Makefile @@ -0,0 +1,7 @@ +install: + mkdir -p /usr/local/bin + cp -f scrsht /usr/local/bin + chmod 755 /usr/local/bin/scrsht + +uninstall: + rm -f /usr/local/bin/scrsht