aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Makefile
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@openbsd.org>2014-08-21 00:42:38 +0000
committerIngo Schwarze <schwarze@openbsd.org>2014-08-21 00:42:38 +0000
commitfba7ee650e55653263b590d20aaacd37d076398c (patch)
treebdf6f5da6d25555a6ec818ac1db9afad6af25f83 /Makefile
parent1c0986883747b6bcfda371608ffdec4b49a5ef35 (diff)
downloadmandoc-fba7ee650e55653263b590d20aaacd37d076398c.tar.gz
mandoc-fba7ee650e55653263b590d20aaacd37d076398c.tar.zst
mandoc-fba7ee650e55653263b590d20aaacd37d076398c.zip
Now that we have man(1) functionality, add a man(1) manual page.
I'm importing the totally unchanged OpenBSD version such that all changes can easily be tracked in CVS.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 5 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 0347dc51..381b3645 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-# $Id: Makefile,v 1.442 2014/08/17 03:24:47 schwarze Exp $
+# $Id: Makefile,v 1.443 2014/08/21 00:42:38 schwarze Exp $
#
# Copyright (c) 2010, 2011, 2012 Kristaps Dzonsons <kristaps@bsd.lv>
# Copyright (c) 2011, 2013, 2014 Ingo Schwarze <schwarze@openbsd.org>
@@ -124,6 +124,7 @@ DISTFILES = INSTALL \
main.h \
makewhatis.8 \
man-cgi.css \
+ man.1 \
man.7 \
man.cgi.8 \
man.h \
@@ -241,6 +242,7 @@ DEMANDOC_OBJS = demandoc.o
WWW_MANS = apropos.1.html \
demandoc.1.html \
+ man.1.html \
mandoc.1.html \
preconv.1.html \
mandoc.3.html \
@@ -317,7 +319,8 @@ base-install: base-build
$(INSTALL_LIB) libmandoc.a $(DESTDIR)$(LIBDIR)
$(INSTALL_LIB) man.h mandoc.h mandoc_aux.h mdoc.h \
$(DESTDIR)$(INCLUDEDIR)
- $(INSTALL_MAN) mandoc.1 preconv.1 demandoc.1 $(DESTDIR)$(MANDIR)/man1
+ $(INSTALL_MAN) man.1 mandoc.1 preconv.1 demandoc.1 \
+ $(DESTDIR)$(MANDIR)/man1
$(INSTALL_MAN) mandoc.3 mandoc_escape.3 mandoc_malloc.3 \
mchars_alloc.3 tbl.3 $(DESTDIR)$(MANDIR)/man3
$(INSTALL_MAN) man.7 mdoc.7 roff.7 eqn.7 tbl.7 mandoc_char.7 \