diff options
author | 1995-12-19 11:00:20 +0000 | |
---|---|---|
committer | 1995-12-19 11:00:20 +0000 | |
commit | 759280742e3d239f4b35158b234881c86ed1bc39 (patch) | |
tree | e1c3f8393dc9e36541a5b7960f26eddd83db7f12 | |
parent | When doing Makefile.bsd-wrapper-style importing, it's nice to be able (diff) | |
download | wireguard-openbsd-759280742e3d239f4b35158b234881c86ed1bc39.tar.xz wireguard-openbsd-759280742e3d239f4b35158b234881c86ed1bc39.zip |
install processed man pages; from niklas
-rw-r--r-- | gnu/usr.bin/cvs/Makefile.bsd-wrapper | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/gnu/usr.bin/cvs/Makefile.bsd-wrapper b/gnu/usr.bin/cvs/Makefile.bsd-wrapper index b2645396674..4247a7296eb 100644 --- a/gnu/usr.bin/cvs/Makefile.bsd-wrapper +++ b/gnu/usr.bin/cvs/Makefile.bsd-wrapper @@ -1,4 +1,6 @@ -# $Id: Makefile.bsd-wrapper,v 1.2 1995/12/19 10:43:28 deraadt Exp $ +# $Id: Makefile.bsd-wrapper,v 1.3 1995/12/19 11:00:20 deraadt Exp $ + +MAN= man/cvs.1 man/cvs.5 man/cvsbug.8 man/cvsinit.8 man/mkmodules.1 all: config.status ${MAKE} @@ -11,8 +13,8 @@ config: .FORCE config.status: sh ${.CURDIR}/configure --prefix=/usr -install: - ${MAKE} prefix=${DESTDIR}/usr install +install: maninstall + ${MAKE} prefix=${DESTDIR}/usr infodir=${DESTDIR}/usr/share/info install clean cleandir: ${MAKE} clean @@ -28,3 +30,4 @@ tags: .include <bsd.obj.mk> .include <bsd.subdir.mk> +.include <bsd.man.mk> |