From: Gaetan Nadon Date: Sat, 3 Mar 2012 22:32:57 +0000 (-0500) Subject: Fix distcheck where protocol.xsl was missing in the tarball X-Git-Tag: 0.94.90~171 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=bbddbc482979817d734c0eb46942b1b689b70cb9;p=profile%2Fivi%2Fwayland.git Fix distcheck where protocol.xsl was missing in the tarball To reproduce, invoke distcheck from an out-of-source tree. Reviewed-by: Peter Hutterer Signed-off-by: Gaetan Nadon --- diff --git a/protocol/.gitignore b/protocol/.gitignore new file mode 100644 index 0000000..a67e944 --- /dev/null +++ b/protocol/.gitignore @@ -0,0 +1 @@ +wayland.html diff --git a/protocol/Makefile.am b/protocol/Makefile.am index 4939557..23554d1 100644 --- a/protocol/Makefile.am +++ b/protocol/Makefile.am @@ -1,7 +1,8 @@ if HAVE_XSLTPROC -dist_doc_DATA = wayland.html wayland-protocol.css wayland.xml +doc_DATA = wayland.html +dist_doc_DATA = wayland-protocol.css wayland.xml protocol.xsl -wayland.html: $(srcdir)/wayland.xml $(srcdir)/protocol.xsl +wayland.html: wayland.xml protocol.xsl $(AM_V_GEN)$(XSLTPROC) $(srcdir)/protocol.xsl $(srcdir)/wayland.xml > $@ CLEANFILES = wayland.html