summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorCurtis McEnroe2018-09-10 16:18:36 -0400
committerCurtis McEnroe2018-09-10 16:18:36 -0400
commit45132a555c1843f9e707afd7a1ee698ac28f0e8e (patch)
treecc08874c3d35f660a96cc1e4da3b4733ab08a6fd /Makefile
parent24b1d1f3d593442027ad4d7de81f08418ea496ea (diff)
Install man page
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile18
1 files changed, 11 insertions, 7 deletions
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