From 45132a555c1843f9e707afd7a1ee698ac28f0e8e Mon Sep 17 00:00:00 2001 From: Curtis McEnroe Date: Mon, 10 Sep 2018 16:18:36 -0400 Subject: Install man page --- Makefile | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 9ec7b26..18aa828 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,6 @@ -LIBRESSL_PREFIX = /usr/local /usr/local/opt/libressl PREFIX = ~/.local +MANPATH = $(PREFIX)/share/man +LIBRESSL_PREFIX = /usr/local /usr/local/opt/libressl CHROOT_USER = chat CHROOT_GROUP = $(CHROOT_USER) @@ -32,6 +33,15 @@ $(OBJS): chat.h tags: *.h *.c ctags -w *.h *.c +install: chatte chatte.1 + install -d $(PREFIX)/bin $(MANPATH)/man1 + install chatte $(PREFIX)/bin/chatte + install -m 644 chatte.1 $(MANPATH)/man1/chatte.1 + +uninstall: + rm -f $(PREFIX)/bin/chatte + rm -f $(MANPATH)/man1/chatte.1 + chroot.tar: chatte mkdir -p root install -d -o root -g wheel \ @@ -67,9 +77,3 @@ chroot.tar: chatte clean: rm -f tags chatte $(OBJS) chroot.tar - -install: chatte - install chatte $(PREFIX)/bin/chatte - -uninstall: - rm -f $(PREFIX)/bin/chatte -- cgit 1.4.1