From b79d195b729179f96c835a03d47042bcce69ba9d Mon Sep 17 00:00:00 2001 From: Martin Kletzander Date: Tue, 2 Dec 2014 07:50:18 +0100 Subject: [PATCH] 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 --- docs/Makefile.am | 5 +++++ 1 file changed, 5 insertions(+) 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)/ \ -- 2.47.2