[PATCH 4/6] doc: Include wayland-util.* for doxygen output

Aaron Faanes dafrito at gmail.com
Sun Sep 15 11:37:09 PDT 2013


This commit creates a shared file list that is included by both the
client and the server for the XML Makefile targets, as classes within
util are used by both the client and the server.
---

I must admit that I'm not too familiar with why these are separated into
server and client XML files. As a result, this patch is a bit of a guess.

 doc/doxygen/Makefile.am | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/doc/doxygen/Makefile.am b/doc/doxygen/Makefile.am
index ec43519..0351c1e 100644
--- a/doc/doxygen/Makefile.am
+++ b/doc/doxygen/Makefile.am
@@ -2,11 +2,17 @@
 noinst_DATA = xml/client/index.xml xml/server/index.xml
 dist_noinst_DATA = wayland.doxygen.in
 
+scanned_src_files_shared = 				\
+	$(top_srcdir)/src/wayland-util.c	\
+	$(top_srcdir)/src/wayland-util.h
+
 scanned_src_files_client = 				\
+	$(scanned_src_files_shared)			\
 	$(top_srcdir)/src/wayland-client.c	\
 	$(top_srcdir)/src/wayland-client.h
 
 scanned_src_files_server = 				\
+	$(scanned_src_files_shared)			\
 	$(top_srcdir)/src/wayland-server.c	\
 	$(top_srcdir)/src/wayland-server.h
 
-- 
1.8.3.1



More information about the wayland-devel mailing list