From 2e3af5e5d71c3fca1b8823488985572a96ca1a0b Mon Sep 17 00:00:00 2001 From: Aaron Faanes Date: Sun, 15 Sep 2013 13:37:09 -0500 Subject: [PATCH] doc: Include wayland-util.* for doxygen output 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. --- 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