summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2008-06-10 17:18:32 +0200
committerMarc-Andre Lureau <marcandre.lureau@gmail.com>2008-06-10 18:36:17 +0300
commitbe378a8c941dcdef2cfbfc62735f04391feb11f0 (patch)
tree99b748125467ef978de127abf30afdb50e66ce82
parent240e7adb352765dac0dc3213073f603583bb96e8 (diff)
add make file for generating the html versions0.2
Heya! Here's a simple Makefile to generate the HTML versions of the specs with. Lennart is a lazy forgetful bloke who cannot remember the right xsltproc line to build those versions. Please merge! Lennart Signed-off-by: Marc-Andre Lureau <marcandre.lureau@gmail.com>
-rw-r--r--spec/.gitignore1
-rw-r--r--spec/Makefile9
2 files changed, 10 insertions, 0 deletions
diff --git a/spec/.gitignore b/spec/.gitignore
new file mode 100644
index 0000000..2d19fc7
--- /dev/null
+++ b/spec/.gitignore
@@ -0,0 +1 @@
+*.html
diff --git a/spec/Makefile b/spec/Makefile
new file mode 100644
index 0000000..1c445fb
--- /dev/null
+++ b/spec/Makefile
@@ -0,0 +1,9 @@
+DOCS = sound-naming-spec.html sound-theme-spec.html
+
+%.html: %.xml
+ xsltproc /usr/share/sgml/docbook/xsl-stylesheets-1.73.2/xhtml/docbook.xsl $< > $@
+
+all: $(DOCS)
+
+clean:
+ rm -f $(DOCS)