Re: [PATCH 5/4] doc: use a dynamic list of man pages

2013-04-03 Thread Peter Hutterer
On Wed, Apr 03, 2013 at 09:57:47PM +0200, Quentin Glidic wrote: > On 03/04/2013 07:34, Peter Hutterer wrote: > [snip] > >-man3_MANS= $(client_MANPAGES) $(server_MANPAGES) > >+man3_MANS= $(shell find man/man3/ -name "wl_*.3" -printf "man/man3/%P\n") > > You should use dist_man3_MANS here. > > > x

Re: [PATCH 5/4] doc: use a dynamic list of man pages

2013-04-03 Thread Quentin Glidic
On 03/04/2013 07:34, Peter Hutterer wrote: [snip] -man3_MANS= $(client_MANPAGES) $(server_MANPAGES) +man3_MANS= $(shell find man/man3/ -name "wl_*.3" -printf "man/man3/%P\n") You should use dist_man3_MANS here. xml/client/index.xml: $(scanned_src_files_client) wayland.doxygen $(AM_V

Re: [PATCH 5/4] doc: use a dynamic list of man pages

2013-04-03 Thread Kristian Høgsberg
On Wed, Apr 03, 2013 at 03:34:45PM +1000, Peter Hutterer wrote: > This requires that doxygen is run before the man target so find can actually > find the man pages. > > Signed-off-by: Peter Hutterer > --- > On Wed, Apr 03, 2013 at 04:54:10AM +0100, Daniel Stone wrote: > > Is there any chance we >

[PATCH 5/4] doc: use a dynamic list of man pages

2013-04-02 Thread Peter Hutterer
This requires that doxygen is run before the man target so find can actually find the man pages. Signed-off-by: Peter Hutterer --- On Wed, Apr 03, 2013 at 04:54:10AM +0100, Daniel Stone wrote: > Is there any chance we > can generate the list of manpages (e.g. by shelling out to doxygen) > rather