diff options
author | Max Kellermann <max@duempel.org> | 2009-04-26 20:02:53 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-04-26 20:02:53 +0200 |
commit | 70d322b296247cd6d09de894f6d1cb06f5cf0d11 (patch) | |
tree | 5d5f62a337eb8362fc230a53dd463e617e5ea56b /Makefile.am | |
parent | f4966ba42c918ffe1de8ec92c2f66515cc4ba75e (diff) | |
download | mpd-70d322b296247cd6d09de894f6d1cb06f5cf0d11.tar.gz mpd-70d322b296247cd6d09de894f6d1cb06f5cf0d11.tar.xz mpd-70d322b296247cd6d09de894f6d1cb06f5cf0d11.zip |
Makefile.am: moved doxygen invocation out of HAVE_XMLTO
The doxygen invocation was misplaced: it was only defined when xmlto
is available.
Diffstat (limited to '')
-rw-r--r-- | Makefile.am | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile.am b/Makefile.am index 52f3bde30..347a45c0d 100644 --- a/Makefile.am +++ b/Makefile.am @@ -738,9 +738,6 @@ DOCBOOK_HTML = $(patsubst %.xml,%/index.html,$(DOCBOOK_FILES)) $(DOCBOOK_HTML): %/index.html: %.xml $(XMLTO) -o $(@D) --stringparam chunker.output.encoding=utf-8 html $< -doc/api/html/index.html: doc/doxygen.conf - $(DOXYGEN) $< - else DOCBOOK_FILES = @@ -748,6 +745,9 @@ DOCBOOK_HTML = endif +doc/api/html/index.html: doc/doxygen.conf + $(DOXYGEN) $< + all-local: $(DOCBOOK_HTML) doc/api/html/index.html clean-local: |