summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorSimon McVittie <simon.mcvittie@collabora.co.uk>2011-04-12 13:01:44 +0100
committerSimon McVittie <simon.mcvittie@collabora.co.uk>2011-07-18 19:24:15 +0100
commit53af0b903cf2a5c0fa7b948b1799d4c547889827 (patch)
treee79f26c8c91c68a2e60a349a3755235c546ec659 /doc
parent37cb1522feaf764d15fd83a4c0e4f6910c13ae9b (diff)
downloaddbus-53af0b903cf2a5c0fa7b948b1799d4c547889827.tar.gz
Install xmlto output to $(htmldir) automatically
Also rename HTML_FILES to XMLTO_OUTPUT, as a more self-describing name: we have other HTML files which are not the output from xmlto. Bug: https://bugs.freedesktop.org/show_bug.cgi?id=36156 Reviewed-by: Will Thompson <will.thompson@collabora.co.uk>
Diffstat (limited to 'doc')
-rw-r--r--doc/Makefile.am16
1 files changed, 7 insertions, 9 deletions
diff --git a/doc/Makefile.am b/doc/Makefile.am
index e402779e..8af7faf0 100644
--- a/doc/Makefile.am
+++ b/doc/Makefile.am
@@ -48,17 +48,16 @@ EXTRA_DIST = \
html_DATA =
-HTML_FILES= \
+# we distribute these in the tarball so users don't necessarily need xmlto
+dist_html_DATA = $(XMLTO_OUTPUT)
+
+XMLTO_OUTPUT= \
dbus-faq.html \
dbus-specification.html \
dbus-test-plan.html \
dbus-tutorial.html
if DBUS_XML_DOCS_ENABLED
-all-local:: $(HTML_FILES)
-
-EXTRA_DIST += $(HTML_FILES)
-
dbus-specification.html: dbus-specification.xml
$(XMLTO) html-nochunks $<
@@ -70,7 +69,6 @@ dbus-tutorial.html: dbus-tutorial.xml
dbus-faq.html: dbus-faq.xml
$(XMLTO) html-nochunks $<
-
endif
if DBUS_DOXYGEN_DOCS_ENABLED
@@ -117,11 +115,11 @@ BONUS_FILES = \
$(top_srcdir)/COPYING \
$(top_srcdir)/ChangeLog
-dbus-docs: $(STATIC_DOCS) $(HTML_FILES) $(MAN_HTML_FILES) $(BONUS_FILES) doxygen.stamp
+dbus-docs: $(STATIC_DOCS) $(dist_html_DATA) $(MAN_HTML_FILES) $(BONUS_FILES) doxygen.stamp
$(AM_V_at)rm -rf $@
$(AM_V_GEN)$(MKDIR_P) $@/api
$(AM_V_at)cp $(STATIC_DOCS) $@
- $(AM_V_at)cp $(HTML_FILES) $@
+ $(AM_V_at)cp $(dist_html_DATA) $@
$(AM_V_at)cp $(MAN_HTML_FILES) $@
$(AM_V_at)cp $(BONUS_FILES) $@
$(AM_V_at)cp -r api/html $@/api
@@ -156,4 +154,4 @@ clean-local:
rm -f doxygen.stamp
maintainer-clean-local:
- rm -f $(HTML_FILES)
+ rm -f $(XMLTO_OUTPUT)