summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--doc/Makefile11
1 files changed, 8 insertions, 3 deletions
diff --git a/doc/Makefile b/doc/Makefile
index a9b7ff4dd7..47f5cbed46 100644
--- a/doc/Makefile
+++ b/doc/Makefile
@@ -88,15 +88,20 @@ $(DOCS) doc/doxy/html: | doc/
doc/doxy/html: $(SRC_PATH)/doc/Doxyfile $(INSTHEADERS)
$(M)$(SRC_PATH)/doc/doxy-wrapper.sh $(SRC_PATH) $^
+install-doc:
+
install-man:
-ifdef CONFIG_MANPAGES
-install-progs-$(CONFIG_HTMLPAGES): install-doc
-install-progs-$(CONFIG_DOC): install-man
+ifdef CONFIG_HTMLPAGES
+install-progs-$(CONFIG_DOC): install-doc
install-doc: $(HTMLPAGES)
$(Q)mkdir -p "$(DOCDIR)"
$(INSTALL) -m 644 $(HTMLPAGES) "$(DOCDIR)"
+endif
+
+ifdef CONFIG_MANPAGES
+install-progs-$(CONFIG_DOC): install-man
install-man: $(MANPAGES)
$(Q)mkdir -p "$(MANDIR)/man1"