protocol: add xslt stylesheet to prettify the protocol

Includes rudimentary styling only.

Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
This commit is contained in:
Peter Hutterer 2012-02-23 15:58:37 +10:00 committed by Kristian Høgsberg
parent 50e87a006f
commit 015c42e1b1
5 changed files with 258 additions and 2 deletions

7
protocol/Makefile.am Normal file
View file

@ -0,0 +1,7 @@
if HAVE_XSLTPROC
doc_DATA = wayland.html wayland.css
wayland.html: wayland.xml protocol.xsl
$(AM_V_GEN)$(XSLTPROC) protocol.xsl wayland.xml > $@
endif