summaryrefslogtreecommitdiff
path: root/test/testbook/Makefile
blob: ab8c9d6573dfe67e44c2f9bdad3a0cd4eba5540e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
.ALL: html xhtml
.PHONY: html xhtml

html:
	if [ ! -d html ]; then mkdir html; fi
	rm -f html/*.*
	xsltproc --timing --nonet --xinclude -o html/ \
	--param db.chunk.chunk_top 1 \
	--stringparam theme.icon.admon.path "../../../data/icons/" \
	--stringparam theme.icon.nav.previous "../../../data/icons/nav-previous.png" \
	--stringparam theme.icon.nav.next "../../../data/icons/nav-next.png" \
	../../xslt/docbook/html/db2html.xsl \
	testbook.xml
xhtml:
	if [ ! -d xhtml ]; then mkdir xhtml; fi
	rm -f xhtml/*.*
	xsltproc --timing --nonet --xinclude -o xhtml/ \
	--param db.chunk.chunk_top 1 \
	--stringparam theme.icon.admon.path "../../../data/icons/" \
	--stringparam theme.icon.nav.previous "../../../data/icons/nav-previous.png" \
	--stringparam theme.icon.nav.next "../../../data/icons/nav-next.png" \
	../../xslt/docbook/html/db2xhtml.xsl \
	testbook.xml