aboutsummaryrefslogtreecommitdiffstats
path: root/protocol/Makefile.am
diff options
context:
space:
mode:
authorPeter Hutterer <peter.hutterer@who-t.net>2012-02-23 15:58:37 +1000
committerKristian Høgsberg <krh@bitplanet.net>2012-02-23 16:03:58 -0500
commit015c42e1b1c758669d8adacf4bd174ce934a43f5 (patch)
tree7dd84120a5608aeb4f239436920401c760e38227 /protocol/Makefile.am
parentprotocol: fix missing hyphenation for "client-created" (diff)
downloadwayland-015c42e1b1c758669d8adacf4bd174ce934a43f5.tar
wayland-015c42e1b1c758669d8adacf4bd174ce934a43f5.tar.gz
wayland-015c42e1b1c758669d8adacf4bd174ce934a43f5.tar.bz2
wayland-015c42e1b1c758669d8adacf4bd174ce934a43f5.tar.lz
wayland-015c42e1b1c758669d8adacf4bd174ce934a43f5.tar.xz
wayland-015c42e1b1c758669d8adacf4bd174ce934a43f5.tar.zst
wayland-015c42e1b1c758669d8adacf4bd174ce934a43f5.zip
protocol: add xslt stylesheet to prettify the protocol
Includes rudimentary styling only. Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
Diffstat (limited to 'protocol/Makefile.am')
-rw-r--r--protocol/Makefile.am7
1 files changed, 7 insertions, 0 deletions
diff --git a/protocol/Makefile.am b/protocol/Makefile.am
new file mode 100644
index 0000000..9b57441
--- /dev/null
+++ b/protocol/Makefile.am
@@ -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