94 lines
3.1 KiB
Makefile
94 lines
3.1 KiB
Makefile
# Copyright (C) Internet Systems Consortium, Inc. ("ISC")
|
|
#
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
#
|
|
# See the COPYRIGHT file distributed with this work for additional
|
|
# information regarding copyright ownership.
|
|
|
|
srcdir = @srcdir@
|
|
VPATH = @srcdir@
|
|
top_srcdir = @top_srcdir@
|
|
|
|
@BIND9_MAKE_RULES@
|
|
|
|
MANOBJS = Bv9ARM.html notes.html
|
|
|
|
TXTOBJS = notes.txt
|
|
|
|
PDFOBJS = Bv9ARM.pdf notes.pdf
|
|
|
|
NOTESXML = notes-download.xml notes-eol.xml notes-intro.xml notes-license.xml \
|
|
notes-thankyou.xml \
|
|
notes-9.11.16.xml \
|
|
notes-9.11.15.xml \
|
|
notes-9.11.14.xml \
|
|
notes-9.11.13.xml \
|
|
notes-9.11.12.xml \
|
|
notes-9.11.11.xml \
|
|
notes-9.11.10.xml \
|
|
notes-9.11.9.xml \
|
|
notes-9.11.8.xml \
|
|
notes-9.11.7.xml \
|
|
notes-9.11.6.xml \
|
|
notes-9.11.5.xml \
|
|
notes-9.11.4.xml \
|
|
notes-9.11.3.xml \
|
|
notes-9.11.2.xml \
|
|
notes-9.11.1.xml \
|
|
notes-9.11.0.xml \
|
|
notes.xml
|
|
|
|
doc man:: ${MANOBJS} ${TXTOBJS} ${PDFOBJS}
|
|
|
|
clean::
|
|
rm -f Bv9ARM.aux Bv9ARM.brf Bv9ARM.glo Bv9ARM.idx Bv9ARM.toc
|
|
rm -f Bv9ARM.log Bv9ARM.out
|
|
rm -f notes.aux notes.brf notes.glo notes.idx notes.toc
|
|
rm -f notes.log notes.out
|
|
|
|
docclean manclean maintainer-clean:: clean
|
|
rm -f *.html ${PDFOBJS}
|
|
|
|
maintainer-clean distclean::
|
|
rm -f releaseinfo.xml
|
|
rm -f pkgversion.xml
|
|
rm -f noteversion.xml
|
|
|
|
# use xmllint to process include
|
|
notes.html: notes-wrapper.xml ${NOTESXML} releaseinfo.xml pkgversion.xml noteversion.xml
|
|
expand notes-wrapper.xml | ${XMLLINT} --xinclude - | \
|
|
${XSLTPROC} --stringparam generate.toc "" ../xsl/isc-notes-html.xsl - > notes.html
|
|
|
|
notes.pdf: notes-wrapper.xml ${NOTESXML} releaseinfo.xml pkgversion.xml noteversion.xml
|
|
${XSLTPROC} ${top_srcdir}/doc/xsl/pre-latex.xsl notes-wrapper.xml | \
|
|
${DBLATEX} -c notes.conf -Pdoc.layout="mainmatter" -o notes.pdf -
|
|
|
|
# Produce notes.txt from notes.html using w3m, with some post-processing:
|
|
#
|
|
# - remove trailing spaces from every line,
|
|
# - remove empty lines from the end of the document,
|
|
# - prevent GitLab issue/MR identifiers from being split across two lines.
|
|
notes.txt: notes.html
|
|
${W3M} -dump -cols 75 -O ascii -T text/html < notes.html | \
|
|
sed 's/ *$$//' | \
|
|
sed -e :a -e '/^\n*$$/{$$d;N;};/\n$$/ba' | \
|
|
sed '/ [!#]$$/{N;s| \([!#]\)\(\n\s*\)\([0-9][0-9]*\)|\2\1\3|;};' > notes.txt
|
|
|
|
# use xmllint to process include
|
|
Bv9ARM.html: Bv9ARM-book.xml ${NOTESXML} releaseinfo.xml pkgversion.xml noteversion.xml
|
|
expand Bv9ARM-book.xml | ${XMLLINT} --xinclude - | \
|
|
${XSLTPROC} --stringparam root.filename Bv9ARM \
|
|
${top_srcdir}/doc/xsl/isc-docbook-chunk.xsl -
|
|
|
|
# use xmllint to process include
|
|
Bv9ARM-all.html: Bv9ARM-book.xml ${NOTESXML} releaseinfo.xml pkgversion.xml noteversion.xml
|
|
expand Bv9ARM-book.xml | ${XMLLINT} --xinclude - |\
|
|
${XSLTPROC} -o Bv9ARM-all.html ../xsl/isc-docbook-html.xsl -
|
|
|
|
Bv9ARM.pdf: Bv9ARM-book.xml ${NOTESXML} releaseinfo.xml pkgversion.xml noteversion.xml
|
|
expand Bv9ARM-book.xml | \
|
|
${XSLTPROC} ${top_srcdir}/doc/xsl/pre-latex.xsl - | \
|
|
${DBLATEX} -c Bv9ARM.conf -o Bv9ARM.pdf -
|