aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
Diffstat (limited to 'doc')
-rw-r--r--doc/Makefile.am16
1 files changed, 10 insertions, 6 deletions
diff --git a/doc/Makefile.am b/doc/Makefile.am
index 6ace106c3..f59b2fe81 100644
--- a/doc/Makefile.am
+++ b/doc/Makefile.am
@@ -1,15 +1,19 @@
DOCBOOK_FILES = protocol.xml
-DOCBOOK_HTML = $(patsubst %.xml,%.html,$(DOCBOOK_FILES))
+DOCBOOK_HTML = $(patsubst %.xml,%/index.html,$(DOCBOOK_FILES))
man_MANS = mpd.1 mpd.conf.5
doc_DATA = mpdconf.example
EXTRA_DIST = $(man_MANS) $(DOCBOOK_FILES) mpdconf.example
-MOSTLYCLEANFILES = $(DOCBOOK_HTML)
-
if HAVE_XMLTO
-doc_DATA += $(DOCBOOK_HTML)
+protocoldir = $(docdir)/protocol
+protocol_DATA = $(wildcard protocol/*.html)
+
+$(DOCBOOK_HTML): %/index.html: %.xml
+ $(XMLTO) -o protocol --stringparam chunker.output.encoding=utf-8 html $<
+
+all-local: $(DOCBOOK_HTML)
-$(DOCBOOK_HTML): %.html: %.xml
- $(XMLTO) html-nochunks $<
+clean-local:
+ rm -rf $(patsubst %.xml,%,$(DOCBOOK_FILES))
endif