summaryrefslogtreecommitdiffstats
path: root/secret-service/Makefile
blob: ee4db35c483bb221768e6c5930a8975d278df291 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
SPEC = org.freedesktop.Secrets.xml

all: html/index.html

html/index.html: reference.xml docbook-params.xsl specification.xml
	xmlto --skip-validation -o html/ -x docbook-params.xsl xhtml specification.xml

reference.xml: tools/spec-to-docbook.xsl $(SPEC)
	xsltproc tools/spec-to-docbook.xsl $(SPEC) > $@

clean:
	rm -f reference.xml
	rm -f html/*.html