From ea81fc548ab11db4077f2ace0555c040a769c926 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Tue, 10 Jun 2008 17:07:26 +0200 Subject: add make file for generating the html versions --- spec/.gitignore | 1 + spec/Makefile | 9 +++++++++ 2 files changed, 10 insertions(+) create mode 100644 spec/.gitignore create mode 100644 spec/Makefile (limited to 'spec') diff --git a/spec/.gitignore b/spec/.gitignore new file mode 100644 index 0000000..514a968 --- /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) -- cgit