aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2011-05-26 20:22:42 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2011-05-26 20:22:42 +0000
commit015cb761b45e2fdbe778b55c6ad5c2dda2e4bce6 (patch)
tree4839b9141792e4829aefd18d775bfe4b9351d794
parent4dacf4c17a2ddff48c140b5dbe2f9caaeafd1f38 (diff)
downloadmandoc-015cb761b45e2fdbe778b55c6ad5c2dda2e4bce6.tar.gz
mandoc-015cb761b45e2fdbe778b55c6ad5c2dda2e4bce6.tar.zst
mandoc-015cb761b45e2fdbe778b55c6ad5c2dda2e4bce6.zip
Have preconv install with mandoc.
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 8ee84ed6..e0b5203d 100644
--- a/Makefile
+++ b/Makefile
@@ -320,10 +320,10 @@ install: all
mkdir -p $(DESTDIR)$(MANDIR)/man1
mkdir -p $(DESTDIR)$(MANDIR)/man3
mkdir -p $(DESTDIR)$(MANDIR)/man7
- $(INSTALL_PROGRAM) mandoc $(DESTDIR)$(BINDIR)
+ $(INSTALL_PROGRAM) mandoc preconv $(DESTDIR)$(BINDIR)
$(INSTALL_LIB) libmandoc.a $(DESTDIR)$(LIBDIR)
$(INSTALL_LIB) mandoc.h $(DESTDIR)$(INCLUDEDIR)
- $(INSTALL_MAN) mandoc.1 $(DESTDIR)$(MANDIR)/man1
+ $(INSTALL_MAN) mandoc.1 preconv.1 $(DESTDIR)$(MANDIR)/man1
$(INSTALL_MAN) mandoc.3 $(DESTDIR)$(MANDIR)/man3
$(INSTALL_MAN) man.7 mdoc.7 roff.7 eqn.7 tbl.7 mandoc_char.7 $(DESTDIR)$(MANDIR)/man7
$(INSTALL_DATA) example.style.css $(DESTDIR)$(EXAMPLEDIR)