Install man page
parent
24b1d1f3d5
commit
45132a555c
18
Makefile
18
Makefile
|
@ -1,5 +1,6 @@
|
||||||
LIBRESSL_PREFIX = /usr/local /usr/local/opt/libressl
|
|
||||||
PREFIX = ~/.local
|
PREFIX = ~/.local
|
||||||
|
MANPATH = $(PREFIX)/share/man
|
||||||
|
LIBRESSL_PREFIX = /usr/local /usr/local/opt/libressl
|
||||||
CHROOT_USER = chat
|
CHROOT_USER = chat
|
||||||
CHROOT_GROUP = $(CHROOT_USER)
|
CHROOT_GROUP = $(CHROOT_USER)
|
||||||
|
|
||||||
|
@ -32,6 +33,15 @@ $(OBJS): chat.h
|
||||||
tags: *.h *.c
|
tags: *.h *.c
|
||||||
ctags -w *.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
|
chroot.tar: chatte
|
||||||
mkdir -p root
|
mkdir -p root
|
||||||
install -d -o root -g wheel \
|
install -d -o root -g wheel \
|
||||||
|
@ -67,9 +77,3 @@ chroot.tar: chatte
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
rm -f tags chatte $(OBJS) chroot.tar
|
rm -f tags chatte $(OBJS) chroot.tar
|
||||||
|
|
||||||
install: chatte
|
|
||||||
install chatte $(PREFIX)/bin/chatte
|
|
||||||
|
|
||||||
uninstall:
|
|
||||||
rm -f $(PREFIX)/bin/chatte
|
|
||||||
|
|
Loading…
Reference in New Issue