1) Use non-relative path to the DSL location, which makes external

document building work again.

2) Add support for building html documents, which is required for
ipsec-must document.
This commit is contained in:
Neil Blakey-Milner 2000-07-14 08:42:49 +00:00
parent b3287c531b
commit 2d8415a9de
Notes: svn2git 2020-12-08 03:00:23 +00:00
svn path=/head/; revision=7604
2 changed files with 7 additions and 4 deletions

View file

@ -1,5 +1,5 @@
#
# $FreeBSD: doc/share/mk/doc.docbook.mk,v 1.10 2000/03/24 19:31:34 nbm Exp $
# $FreeBSD: doc/share/mk/doc.docbook.mk,v 1.11 2000/04/29 07:46:15 kuriyama Exp $
#
# This include file <doc.docbook.mk> handles building and installing of
# DocBook documentation in the FreeBSD Documentation Project.
@ -49,8 +49,8 @@ MASTERDOC?= ${.CURDIR}/${DOC}.sgml
JADE= ${PREFIX}/bin/jade
DSLHTML?= ${.CURDIR}/../../share/sgml/freebsd.dsl
DSLPRINT?= ${.CURDIR}/../../share/sgml/freebsd.dsl
DSLHTML?= ${DOC_PREFIX}/${LANG_CODE}/share/sgml/freebsd.dsl
DSLPRINT?= ${DOC_PREFIX}/${LANG_CODE}/share/sgml/freebsd.dsl
FREEBSDCATALOG= ${DOC_PREFIX}/share/sgml/catalog
DOCBOOKCATALOG= ${PREFIX}/share/sgml/docbook/catalog

View file

@ -1,5 +1,5 @@
#
# $FreeBSD$
# $FreeBSD: doc/share/mk/doc.project.mk,v 1.2 1999/09/06 06:53:39 peter Exp $
#
# This include file <doc.project.mk> is the FreeBSD Documentation Project
# co-ordination make file.
@ -67,6 +67,9 @@ PRI_LANG?= en_US.ISO_8859-1
.if ${DOCFORMAT} == "docbook"
.include "doc.docbook.mk"
.endif
.if ${DOCFORMAT} == "html"
.include "doc.html.mk"
.endif
.endif
# Subdirectory glue and ownership information.