Add Makefiles for the new release documentation structure.

This is not yet connected to the build.

Sponsored by:	The FreeBSD Foundation
This commit is contained in:
Glen Barber 2017-10-05 19:01:54 +00:00
parent f4ff6b460b
commit c269ccbf2e
Notes: svn2git 2020-12-08 03:00:23 +00:00
svn path=/head/; revision=51048
4 changed files with 112 additions and 0 deletions

View file

@ -0,0 +1,28 @@
# $FreeBSD$
.if exists(../Makefile.conf)
.include "../Makefile.conf"
.endif
.if exists(../Makefile.inc)
.include "../Makefile.inc"
.endif
DOC_PREFIX?= ${.CURDIR}/../../../../..
RELN_ROOT?= ${.CURDIR}/..
DOC?= errata
FORMATS?= html
INSTALL_COMPRESSED?= gz
INSTALL_ONLY_COMPRESSED=
JADEFLAGS+= -V %generate-article-toc%
SRCS?= errata.xml
DATA+= ${DOC}.html
install: ${DOC}.html
mkdir -p ${DOCINSTALLDIR}
${INSTALL_DOCS} ${DATA} ${DOCINSTALLDIR}
.include "${DOC_PREFIX}/share/mk/doc.project.mk"

View file

@ -0,0 +1,28 @@
# $FreeBSD$
.if exists(../Makefile.conf)
.include "../Makefile.conf"
.endif
.if exists(../Makefile.inc)
.include "../Makefile.inc"
.endif
DOC_PREFIX?= ${.CURDIR}/../../../../..
RELN_ROOT?= ${.CURDIR}/..
JADEFLAGS+= -V %generate-article-toc%
DOC?= hardware
FORMATS?= html
INSTALL_COMPRESSED?= gz
INSTALL_ONLY_COMPRESSED=
SRCS?= hardware.xml
DATA+= ${DOC}.html
install: ${DOC}.html
mkdir -p ${DOCINSTALLDIR}
${INSTALL_DOCS} ${DATA} ${DOCINSTALLDIR}
.include "${DOC_PREFIX}/share/mk/doc.project.mk"

View file

@ -0,0 +1,28 @@
# $FreeBSD$
.if exists(../Makefile.conf)
.include "../Makefile.conf"
.endif
.if exists(../Makefile.inc)
.include "../Makefile.inc"
.endif
DOC_PREFIX?= ${.CURDIR}/../../../../..
RELN_ROOT?= ${.CURDIR}/..
DOC= readme
FORMATS?= html
INSTALL_COMPRESSED?= gz
INSTALL_ONLY_COMPRESSED=
JADEFLAGS+= -V %generate-article-toc%
SRCS?= readme.xml
DATA+= ${DOC}.html
install: ${DOC}.html
mkdir -p ${DOCINSTALLDIR}
${INSTALL_DOCS} ${DATA} ${DOCINSTALLDIR}
.include "${DOC_PREFIX}/share/mk/doc.project.mk"

View file

@ -0,0 +1,28 @@
# $FreeBSD$
.if exists(../Makefile.conf)
.include "../Makefile.conf"
.endif
.if exists(../Makefile.inc)
.include "../Makefile.inc"
.endif
DOC_PREFIX?= ${.CURDIR}/../../../../..
RELN_ROOT?= ${.CURDIR}/..
DOC= relnotes
FORMATS?= html
INSTALL_COMPRESSED?= gz
INSTALL_ONLY_COMPRESSED=
JADEFLAGS+= -V %generate-article-toc%
SRCS?= relnotes.xml
DATA+= ${DOC}.html
install: ${DOC}.html
mkdir -p ${DOCINSTALLDIR}
${INSTALL_DOCS} ${DATA} ${DOCINSTALLDIR}
.include "${DOC_PREFIX}/share/mk/doc.project.mk"