Some of the web content is only present in the source tree, thus when
viewing pages from the build tree they appear missing.
Signed-off-by: Daniel P. Berrangé <berrange(a)redhat.com>
---
docs/Makefile.am | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
diff --git a/docs/Makefile.am b/docs/Makefile.am
index 50b2fd7066..0c828102e1 100644
--- a/docs/Makefile.am
+++ b/docs/Makefile.am
@@ -39,6 +39,30 @@ modules_admin = libvirt-admin
modules_qemu = libvirt-qemu
modules_lxc = libvirt-lxc
+all: vpathhack
+
+# This hack enables us to view the web pages
+# from within the uninstalled build tree
+vpathhack:
+ for dir in fonts js logos; \
+ do \
+ ln -s $(srcdir)/$$dir $$dir ; \
+ done
+ for file in $(css); \
+ do \
+ ln -s $(srcdir)/$$file $$file ; \
+ done
+
+clean-local:
+ for dir in fonts js logos; \
+ do \
+ rm -f $$dir ; \
+ done
+ for file in $(css); \
+ do \
+ rm -f $$file ; \
+ done
+
apihtml = \
html/index.html \
$(apihtml_generated)
--
2.23.0