diff options
author | Stef Walter <stef@memberwebs.com> | 2009-08-16 00:07:29 +0000 |
---|---|---|
committer | Stef Walter <stefw@collabora.co.uk> | 2010-12-04 16:11:42 +0000 |
commit | 98d6279982e292c6885a2ef4a2b0eafbad31a0b8 (patch) | |
tree | 7c11066260c77eb2beefdd43ccf6f8bb1fbd18df /secret-service | |
parent | 7fd31353669e5068e1712348f3a239c8140b7236 (diff) | |
download | xdg-specs-98d6279982e292c6885a2ef4a2b0eafbad31a0b8.tar.xz |
Add a Makefile to help with the building
Diffstat (limited to 'secret-service')
-rw-r--r-- | secret-service/.gitignore | 3 | ||||
-rw-r--r-- | secret-service/Makefile | 10 |
2 files changed, 13 insertions, 0 deletions
diff --git a/secret-service/.gitignore b/secret-service/.gitignore new file mode 100644 index 0000000..551e415 --- /dev/null +++ b/secret-service/.gitignore @@ -0,0 +1,3 @@ + +/html/*.html +reference.xml diff --git a/secret-service/Makefile b/secret-service/Makefile new file mode 100644 index 0000000..b5c4ab5 --- /dev/null +++ b/secret-service/Makefile @@ -0,0 +1,10 @@ + +SPEC = org.freedesktop.Secrets.xml + +all: html/index.html + +html/index.html: reference.xml params-html.xsl specification.xml + xmlto --skip-validation -o html -p params-html.xsl xhtml specification.xml + +reference.xml: tools/spec-to-docbook.xsl $(SPEC) + xsltproc tools/spec-to-docbook.xsl $(SPEC) > $@ |