diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2011-07-03 20:54:41 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2011-07-03 20:54:41 +0000 |
commit | 7d08fd2d445cebe94aedfdbb44d69a35cbe5addf (patch) | |
tree | fbdcaa6de105634cf81caffe5e32fa86ba193979 | |
parent | 142f3f33ae70bff865d1359c11d71423346ca94c (diff) | |
download | mandoc-7d08fd2d445cebe94aedfdbb44d69a35cbe5addf.tar.gz |
We obviously need man.h and mdoc.h installed as mentioned in mandoc.3.
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -323,7 +323,7 @@ install: all mkdir -p $(DESTDIR)$(MANDIR)/man7 $(INSTALL_PROGRAM) mandoc preconv $(DESTDIR)$(BINDIR) $(INSTALL_LIB) libmandoc.a $(DESTDIR)$(LIBDIR) - $(INSTALL_LIB) mandoc.h $(DESTDIR)$(INCLUDEDIR) + $(INSTALL_LIB) man.h mdoc.h mandoc.h $(DESTDIR)$(INCLUDEDIR) $(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 |