From: Peter Hutterer Date: Thu, 4 Apr 2013 01:29:01 +0000 (+1000) Subject: doc: use a dynamic list of man pages X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=509d1d802abda4cec5a22fab5848787f92f69f02;p=profile%2Fivi%2Fwayland.git doc: use a dynamic list of man pages This requires that doxygen is run before the man target so find can actually find the man pages. Signed-off-by: Peter Hutterer --- diff --git a/doc/doxygen/Makefile.am b/doc/doxygen/Makefile.am index e41c790..ec43519 100644 --- a/doc/doxygen/Makefile.am +++ b/doc/doxygen/Makefile.am @@ -10,56 +10,10 @@ scanned_src_files_server = \ $(top_srcdir)/src/wayland-server.c \ $(top_srcdir)/src/wayland-server.h -client_MANPAGES = \ - man/man3/wl_display.3 \ - man/man3/wl_display_connect.3 \ - man/man3/wl_display_connect_to_fd.3 \ - man/man3/wl_display_create_queue.3 \ - man/man3/wl_display_disconnect.3 \ - man/man3/wl_display_dispatch.3 \ - man/man3/wl_display_dispatch_pending.3 \ - man/man3/wl_display_dispatch_queue.3 \ - man/man3/wl_display_dispatch_queue_pending.3 \ - man/man3/wl_display_flush.3 \ - man/man3/wl_display_get_error.3 \ - man/man3/wl_display_get_fd.3 \ - man/man3/wl_display_roundtrip.3 \ - man/man3/wl_event_queue.3 \ - man/man3/wl_event_queue_destroy.3 \ - man/man3/wl_proxy.3 \ - man/man3/wl_proxy_add_listener.3 \ - man/man3/wl_proxy_create.3 \ - man/man3/wl_proxy_destroy.3 \ - man/man3/wl_proxy_get_class.3 \ - man/man3/wl_proxy_get_id.3 \ - man/man3/wl_proxy_get_user_data.3 \ - man/man3/wl_proxy_marshal.3 \ - man/man3/wl_proxy_set_queue.3 \ - man/man3/wl_proxy_set_user_data.3 - -server_MANPAGES = \ - man/man3/wl_buffer.3 \ - man/man3/wl_client.3 \ - man/man3/wl_data_offer.3 \ - man/man3/wl_data_source.3 \ - man/man3/wl_global.3 \ - man/man3/wl_keyboard.3 \ - man/man3/wl_keyboard_grab.3 \ - man/man3/wl_keyboard_grab_interface.3 \ - man/man3/wl_listener.3 \ - man/man3/wl_pointer.3 \ - man/man3/wl_pointer_grab.3 \ - man/man3/wl_pointer_grab_interface.3 \ - man/man3/wl_resource.3 \ - man/man3/wl_seat.3 \ - man/man3/wl_signal.3 \ - man/man3/wl_socket.3 \ - man/man3/wl_surface.3 \ - man/man3/wl_touch.3 \ - man/man3/wl_touch_grab.3 \ - man/man3/wl_touch_grab_interface.3 - -man3_MANS= $(client_MANPAGES) $(server_MANPAGES) +# find all man/man3/wl_foo.3 pages +# for this to work, we need to create them before the man target (hence +# all-local below) +dist_man3_MANS= $(shell find man/man3/ -name "wl_*.3" -printf "man/man3/%P\n") xml/client/index.xml: $(scanned_src_files_client) wayland.doxygen $(AM_V_GEN)$(MKDIR_P) xml/client @@ -84,7 +38,8 @@ doxygen.man: $(scanned_src_files_client) $(scanned_src_files_server) echo "INPUT= $^"; \ ) | doxygen - -$(client_MANPAGES) $(server_MANPAGES): doxygen.man +# there is no man-local +all-local: doxygen.man clean-local: rm -rf xml/