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:
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
28
en_US.ISO8859-1/htdocs/releases/12.0R/errata/Makefile
Normal file
28
en_US.ISO8859-1/htdocs/releases/12.0R/errata/Makefile
Normal 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"
|
28
en_US.ISO8859-1/htdocs/releases/12.0R/hardware/Makefile
Normal file
28
en_US.ISO8859-1/htdocs/releases/12.0R/hardware/Makefile
Normal 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"
|
28
en_US.ISO8859-1/htdocs/releases/12.0R/readme/Makefile
Normal file
28
en_US.ISO8859-1/htdocs/releases/12.0R/readme/Makefile
Normal 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"
|
28
en_US.ISO8859-1/htdocs/releases/12.0R/relnotes/Makefile
Normal file
28
en_US.ISO8859-1/htdocs/releases/12.0R/relnotes/Makefile
Normal 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"
|
Loading…
Reference in a new issue