From: Armaan Bhojwani <3fb650a9-b47e-4604-a282-1dd91953b2ee@anonaddy.me> Date: Sun, 20 Sep 2020 22:28:53 +0000 (-0400) Subject: no clue what happened when I just merged branches X-Git-Url: https://git.armaanb.net/scdoc-mode/diff/?p=charsel.git;a=commitdiff_plain;h=47d69cf438e332ae205a62e8aa362a52ee510d60 no clue what happened when I just merged branches --- 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