From: Martin Kletzander Date: Tue, 2 Dec 2014 06:50:18 +0000 (+0100) Subject: build, docs: Let make see the dependencies for html/*.html X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=b79d195b729179f96c835a03d47042bcce69ba9d;p=libvirt.git build, docs: Let make see the dependencies for html/*.html Make was not able to realize the dependencies for html/*.html files when running 'make -j9 dist'. All the files are generated together with html/index.html, so simply separating them into another variable and adding one block into the dependency chain solves the issue. Signed-off-by: Martin Kletzander --- diff --git a/docs/Makefile.am b/docs/Makefile.am index 684687dec9..bb52c35cc9 100644 --- a/docs/Makefile.am +++ b/docs/Makefile.am @@ -27,6 +27,9 @@ DEVHELP_DIR=$(datadir)/gtk-doc/html/libvirt apihtml = \ html/index.html \ + $(apihtml_generated) + +apihtml_generated = \ html/libvirt-libvirt-domain.html \ html/libvirt-libvirt-domain-snapshot.html \ html/libvirt-libvirt-event.html \ @@ -248,6 +251,8 @@ internals/%.html.tmp: internals/%.html.in subsite.xsl page.xsl sitemap.html.in -e /php_placeholder/d < $@.tmp > $(srcdir)/$@ \ || { rm $(srcdir)/$@ && exit 1; }; fi +$(apihtml_generated): html/index.html + html/index.html: libvirt-api.xml newapi.xsl page.xsl sitemap.html.in $(AM_V_GEN)if [ -x $(XSLTPROC) ] ; then \ $(XSLTPROC) --nonet -o $(srcdir)/ \