diff options
author | Ingo Schwarze <schwarze@cvs.openbsd.org> | 2014-12-14 17:55:38 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@cvs.openbsd.org> | 2014-12-14 17:55:38 +0000 |
commit | 556e895d6590ea3637cf1e1b07c8dc506f17d13f (patch) | |
tree | f27a7329a5f790e9f8189a43abca0e14956bb9f5 /usr.bin/mandoc | |
parent | 4032eee327b944ba4c45141bba9d850129c01384 (diff) |
Switch man(1) to the mandoc implementation.
OK krw@ naddy@ sthen@ "commit it now" deraadt@
I won't remove the files in src/usr.bin/man, such that we can quickly
switch back in case a problem is found.
Diffstat (limited to 'usr.bin/mandoc')
-rw-r--r-- | usr.bin/mandoc/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/usr.bin/mandoc/Makefile b/usr.bin/mandoc/Makefile index 75724a39b9e..ab2d12ac84a 100644 --- a/usr.bin/mandoc/Makefile +++ b/usr.bin/mandoc/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.88 2014/12/13 15:30:52 schwarze Exp $ +# $OpenBSD: Makefile,v 1.89 2014/12/14 17:55:37 schwarze Exp $ .include <bsd.own.mk> @@ -21,11 +21,13 @@ SRCS+= manpath.c mandocdb.c mansearch_const.c mansearch.c PROG= mandoc LINKS = ${BINDIR}/mandoc ${BINDIR}/apropos \ + ${BINDIR}/mandoc ${BINDIR}/help \ + ${BINDIR}/mandoc ${BINDIR}/man \ ${BINDIR}/mandoc ${BINDIR}/whatis \ ${BINDIR}/mandoc /usr/sbin/makewhatis \ ${BINDIR}/mandoc /usr/libexec/makewhatis -MAN = apropos.1 mandoc.1 whatis.1 makewhatis.8 +MAN = apropos.1 man.1 mandoc.1 whatis.1 makewhatis.8 CLEANFILES += man.cgi cgi.o man.cgi.8.manlint |