summaryrefslogtreecommitdiff
path: root/sandbox/docbook/examples/header_footer2/makefile
blob: dcf08cdaacea0e6b60b5337d095e49c068c8eaa6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
all: document.pdf

document.xml: document.rst
	rst2xml.py --no-doctype --no-doc-title --trim-footnote-reference-space document.rst |rstxml2xml.py  > document.xml


document_docbook.xml: document.xml
	xsltproc rst_docbook.xsl document.xml > document_docbook.xml

document_docbook.fo: document_docbook.xml docbook_fo.xsl
	xsltproc docbook_fo.xsl document_docbook.xml > document_docbook.fo


document.pdf: document_docbook.fo
	fop -fo document_docbook.fo -pdf document.pdf

clean: 
	rm -f document.xml document_docbook.xml document_docbook.fo document.pdf *~