docs: install html and txt versions of manpages
authorIan Campbell <ian.campbell@citrix.com>
Tue, 29 Nov 2011 14:17:27 +0000 (14:17 +0000)
committerIan Campbell <ian.campbell@citrix.com>
Tue, 29 Nov 2011 14:17:27 +0000 (14:17 +0000)
Signed-off-by: Ian Campbell <ian.campbell@citrix.com>
Committed-by: Ian Jackson <ian.jackson.citrix.com>
Acked-by: Ian Jackson <ian.jackson.citrix.com>
docs/Docs.mk
docs/Makefile

index 628a1605e582e6c7aa37513beb7896cd94344927..aa653d3d6914572d1339141fba667bebfc7d9707 100644 (file)
@@ -5,6 +5,8 @@ FIG2DEV         := fig2dev
 LATEX2HTML     := latex2html
 DOXYGEN                := doxygen
 POD2MAN                := pod2man
+POD2HTML       := pod2html
+POD2TEXT       := pod2text
 DOT            := dot
 NEATO          := neato
 MARKDOWN       := markdown
index 3b2aaa3090356ef2725a453d05b7d4b2e7e5309c..7595e1d23699d86aeb4a5248453e7a6328eab838 100644 (file)
@@ -15,9 +15,13 @@ DOC_MARKDOWN := $(wildcard misc/*.markdown)
 DOC_PS         := $(patsubst src/%.tex,ps/%.ps,$(DOC_TEX))
 DOC_PDF                := $(patsubst src/%.tex,pdf/%.pdf,$(DOC_TEX))
 DOC_HTML       := $(patsubst src/%.tex,html/%/index.html,$(DOC_TEX)) \
-                  $(patsubst %.markdown,html/%.html,$(DOC_MARKDOWN))
+                  $(patsubst %.markdown,html/%.html,$(DOC_MARKDOWN)) \
+                  $(patsubst man/%.pod.1,html/man/%.1.html,$(DOC_MAN1SRC)) \
+                  $(patsubst man/%.pod.5,html/man/%.5.html,$(DOC_MAN5SRC))
 DOC_TXT         := $(patsubst %.txt,txt/%.txt,$(wildcard misc/*.txt)) \
-                  $(patsubst %.markdown,txt/%.txt,$(DOC_MARKDOWN))
+                  $(patsubst %.markdown,txt/%.txt,$(DOC_MARKDOWN)) \
+                  $(patsubst man/%.pod.1,txt/man/%.1.txt,$(DOC_MAN1SRC)) \
+                  $(patsubst man/%.pod.5,txt/man/%.5.txt,$(DOC_MAN5SRC))
 
 GFX = $(patsubst %.fig, %.eps, $(wildcard figs/*.fig))
 
@@ -76,7 +80,7 @@ clean:
        $(MAKE) -C xen-api clean
        rm -rf .word_count *.aux *.dvi *.bbl *.blg *.glo *.idx *~ 
        rm -rf *.ilg *.log *.ind *.toc *.bak core
-       rm -rf $(GFX) ps pdf html
+       rm -rf $(GFX) ps pdf html txt
        rm -rf api
        rm -rf man5
        rm -rf man1
@@ -132,6 +136,16 @@ html/%.html: %.markdown
        $(call move-if-changed,$@.tmp,$@) ; else \
        echo "markdown not installed; skipping $*.html."; fi
 
+html/man/%.1.html: man/%.pod.1 Makefile
+       $(INSTALL_DIR) $(@D)
+       $(POD2HTML) --infile=$< --outfile=$@.tmp
+       $(call move-if-changed,$@.tmp,$@)
+
+html/man/%.5.html: man/%.pod.5 Makefile
+       $(INSTALL_DIR) $(@D)
+       $(POD2HTML) --infile=$< --outfile=$@.tmp
+       $(call move-if-changed,$@.tmp,$@)
+
 txt/%.txt: %.txt
        $(INSTALL_DIR) $(@D)
        cp $< $@.tmp
@@ -141,3 +155,14 @@ txt/%.txt: %.markdown
        $(INSTALL_DIR) $(@D)
        cp $< $@.tmp
        $(call move-if-changed,$@.tmp,$@)
+
+txt/man/%.1.txt: man/%.pod.1 Makefile
+       $(INSTALL_DIR) $(@D)
+       $(POD2TEXT) $< $@.tmp
+       $(call move-if-changed,$@.tmp,$@)
+
+txt/man/%.5.txt: man/%.pod.5 Makefile
+       $(INSTALL_DIR) $(@D)
+       $(POD2TEXT) $< $@.tmp
+       $(call move-if-changed,$@.tmp,$@)
+