blob: 64531e57ac2240225fd27547447fa258eeb8b180 (
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 --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 *~
|