blob: c53e3e9b22d1c00bf0874612fde633ac1cd95d23 (
plain)
1
2
3
4
5
6
7
8
9
|
DOCS = sound-naming-spec.html sound-theme-spec.html
%.html: %.xml
xsltproc http://docbook.sourceforge.net/release/xsl/current/xhtml/docbook.xsl $< > $@
all: $(DOCS)
clean:
rm -f $(DOCS)
|