From 47d69cf438e332ae205a62e8aa362a52ee510d60 Mon Sep 17 00:00:00 2001 From: Armaan Bhojwani <3fb650a9-b47e-4604-a282-1dd91953b2ee@anonaddy.me> Date: Sun, 20 Sep 2020 18:28:53 -0400 Subject: [PATCH] no clue what happened when I just merged branches --- Makefile | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..e4adcff --- /dev/null +++ b/Makefile @@ -0,0 +1,16 @@ +.DEFAULT_GOAL := install +.RECIPEPREFIX := > + +install: +>chmod +x src/charsel +>mkdir -p /usr/share/charsel/charfiles/ +>cp charfiles/* /usr/share/charsel/charfiles/ +>mkdir /usr/share/doc/charsel +>cp README.md /usr/share/doc/charsel/ +>cp src/motd /usr/share/charsel +>cp src/charsel /usr/bin/ + +uninstall: +>rm -rf /usr/share/charsel/charfiles/ +>rm -rf /usr/share/doc/charsel/ +>rm -rf /usr/bin/charsel -- 2.39.2