aboutsummaryrefslogtreecommitdiff
path: root/doc/Makefile.am
diff options
context:
space:
mode:
Diffstat (limited to 'doc/Makefile.am')
-rw-r--r--doc/Makefile.am15
1 files changed, 15 insertions, 0 deletions
diff --git a/doc/Makefile.am b/doc/Makefile.am
new file mode 100644
index 0000000..f8ff134
--- /dev/null
+++ b/doc/Makefile.am
@@ -0,0 +1,15 @@
+## Docbook processing - very simplistic at the moment
+
+DB_URI = http://docbook.sourceforge.net/release/xsl/current
+
+dist_doc_DATA = pattern.txt
+
+dist_html_DATA = reference.html lspipat.png
+CLEANFILES = reference.html html_titlepage.xsl
+EXTRA_DIST = reference.xml html_custom.xsl html_titlepage.spec.xml
+
+reference.html : reference.xml html_custom.xsl html_titlepage.xsl
+ @XSLTPROC@ @XSLT_FLAGS@ -o $@ html_custom.xsl $<
+
+html_titlepage.xsl : html_titlepage.spec.xml
+ @XSLTPROC@ @XSLT_FLAGS@ -o $@ $(DB_URI)/template/titlepage.xsl $<