summary refs log tree commit diff
path: root/doc/Makefile
blob: 3c2e8cb21b08b2e71f5ae5cdfd2b407eb5819f57 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# You may need to override this.
docbookxsl = $(HOME)/.nix-profile/xml/xsl/docbook
dblatex = dblatex

XMLLINT = xmllint --catalogs
XSLTPROC = xsltproc --catalogs \
 --param section.autolabel 1 \
 --param section.label.includes.component.label 1 \
 --param html.stylesheet \'style.css\' \
 --param xref.with.number.and.title 1 \
 --param toc.section.depth 3 \
 --param admon.style \'\' \
 --param callout.graphics.extension \'.gif\'

NEWS_OPTS = \
 --stringparam generate.toc "article nop" \
 --stringparam section.autolabel.max.depth 0 \
 --stringparam header.rule 0

all: NEWS.html NEWS.txt manual.html manual.pdf

NEWS.html: release-notes.xml
	$(XSLTPROC) --nonet --xinclude --output $@ $(NEWS_OPTS) \
	  $(docbookxsl)/html/docbook.xsl release-notes.xml

NEWS.txt: release-notes.xml
	$(XSLTPROC) --nonet --xinclude quote-literals.xsl release-notes.xml | \
	  $(XSLTPROC) --nonet --output $@.tmp.html $(NEWS_OPTS) \
	  $(docbookxsl)/html/docbook.xsl -
	LANG=en_US w3m -dump $@.tmp.html > $@
	rm $@.tmp.html

manual.html: *.xml
	$(XSLTPROC) --nonet --xinclude --output manual.html \
	  $(docbookxsl)/html/docbook.xsl manual.xml

manual.pdf: *.xml
	$(dblatex) \
	  -P doc.collab.show=0 \
	  -P latex.output.revhistory=0 \
	  manual.xml