From d271906d6b837660e6bf70faa5e2143d46778708 Mon Sep 17 00:00:00 2001 From: Armaan Bhojwani Date: Sun, 31 Jan 2021 08:38:01 -0500 Subject: [PATCH] Add manpage installer to Makefile --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Makefile b/Makefile index 6716078..a126ed9 100644 --- a/Makefile +++ b/Makefile @@ -2,10 +2,14 @@ global: pip install . + mkdir -p /usr/share/man/man1/ + cp man/lightcards.1 ~/.local/share/man/man1/ cp ./lightcards.sh /usr/local/bin/lightcards local: pip install . + mkdir -p ~/.local/share/man/man1/ + cp man/lightcards.1 ~/.local/share/man/man1/ cp ./lightcards.sh ~/.local/bin/lightcards global-uninstall: -- 2.39.2