[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen master] docs: Support for generating man(8) pages
commit a4304367c40969cea034028b0fe5b0c28033e7e9 Author: Andrew Cooper <andrew.cooper3@xxxxxxxxxx> AuthorDate: Wed Aug 26 09:15:20 2015 +0000 Commit: Ian Jackson <Ian.Jackson@xxxxxxxxxxxxx> CommitDate: Thu Aug 27 19:14:31 2015 +0100 docs: Support for generating man(8) pages The manpage rules are very repetative, because of the section number being present in the filenames. Instead of adding another set of 3 rules, switch to using a metarule to automate the repetative action. New rules for different manpage sections can be added simply by extending the $(foreach) Signed-off-by: Andrew Cooper <andrew.cooper3@xxxxxxxxxx> Acked-by: Wei Liu <wei.liu2@xxxxxxxxxx> --- .gitignore | 1 + docs/Makefile | 91 ++++++++++++++++++++++++++------------------------------ 2 files changed, 43 insertions(+), 49 deletions(-) diff --git a/.gitignore b/.gitignore index dafa3c4..9ead7c4 100644 --- a/.gitignore +++ b/.gitignore @@ -43,6 +43,7 @@ dist/* docs/html/ docs/man1/ docs/man5/ +docs/man8/ docs/pdf/ docs/txt/ extras/mini-os diff --git a/docs/Makefile b/docs/Makefile index ef3340c..3d77913 100644 --- a/docs/Makefile +++ b/docs/Makefile @@ -9,6 +9,7 @@ DOC_ARCHES := arm x86_32 x86_64 # Documentation sources to build MAN1SRC-y := $(sort $(shell find man/ -name '*.pod.1' -print)) MAN5SRC-y := $(sort $(shell find man/ -name '*.pod.5' -print)) +MAN8SRC-y := $(sort $(shell find man/ -name '*.pod.8' -print)) MARKDOWNSRC-y := $(sort $(shell find misc -name '*.markdown' -print)) @@ -19,17 +20,20 @@ PANDOCSRC-y := $(sort $(shell find specs -name '*.pandoc' -print)) # Documentation targets DOC_MAN1 := $(patsubst man/%.pod.1,man1/%.1,$(MAN1SRC-y)) DOC_MAN5 := $(patsubst man/%.pod.5,man5/%.5,$(MAN5SRC-y)) +DOC_MAN8 := $(patsubst man/%.pod.8,man8/%.8,$(MAN8SRC-y)) DOC_HTML := $(patsubst %.markdown,html/%.html,$(MARKDOWNSRC-y)) \ $(patsubst %.pandoc,html/%.html,$(PANDOCSRC-y)) \ $(patsubst man/%.pod.1,html/man/%.1.html,$(MAN1SRC-y)) \ $(patsubst man/%.pod.5,html/man/%.5.html,$(MAN5SRC-y)) \ + $(patsubst man/%.pod.8,html/man/%.8.html,$(MAN8SRC-y)) \ $(patsubst %.txt,html/%.txt,$(TXTSRC-y)) \ $(patsubst %,html/hypercall/%/index.html,$(DOC_ARCHES)) DOC_TXT := $(patsubst %.txt,txt/%.txt,$(TXTSRC-y)) \ $(patsubst %.markdown,txt/%.txt,$(MARKDOWNSRC-y)) \ $(patsubst %.pandoc,txt/%.txt,$(PANDOCSRC-y)) \ $(patsubst man/%.pod.1,txt/man/%.1.txt,$(MAN1SRC-y)) \ - $(patsubst man/%.pod.5,txt/man/%.5.txt,$(MAN5SRC-y)) + $(patsubst man/%.pod.5,txt/man/%.5.txt,$(MAN5SRC-y)) \ + $(patsubst man/%.pod.8,txt/man/%.8.txt,$(MAN8SRC-y)) DOC_PDF := $(patsubst %.markdown,pdf/%.pdf,$(MARKDOWNSRC-y)) \ $(patsubst %.pandoc,pdf/%.pdf,$(PANDOCSRC-y)) @@ -55,7 +59,7 @@ else endif .PHONY: man-pages -man-pages: $(DOC_MAN1) $(DOC_MAN5) +man-pages: $(DOC_MAN1) $(DOC_MAN5) $(DOC_MAN8) .PHONY: pdf pdf: $(DOC_PDF) @@ -75,6 +79,42 @@ distclean: clean autom4te.cache # Top level install targets + +# Metarules for generating manpages. Run with $(1) substitued for section +define GENERATE_MANPAGE_RULES + +# Real manpages +man$(1)/%.$(1): man/%.pod.$(1) Makefile +ifneq ($(POD2MAN),) + @$(INSTALL_DIR) $$(@D) + $(POD2MAN) --release=$(VERSION) --name=$$* -s $(1) -c "Xen" $$< $$@ +else + @echo "pod2man not installed; skipping $$@" +endif + +# HTML manpages +html/man/%.$(1).html: man/%.pod.$(1) Makefile +ifneq ($(POD2HTML),) + @$(INSTALL_DIR) $$(@D) + $(POD2HTML) --infile=$$< --outfile=$$@ +else + @echo "pod2html not installed; skipping $$@" +endif + +# Text manpages +txt/man/%.$(1).txt: man/%.pod.$(1) Makefile +ifneq ($(POD2TEXT),) + @$(INSTALL_DIR) $$(@D) + $(POD2TEXT) $$< $$@ +else + @echo "pod2text not installed; skipping $$@" +endif + +endef + +# Generate manpage rules for each section +$(foreach i,1 5 8,$(eval $(call GENERATE_MANPAGE_RULES,$(i)))) + .PHONY: install-man-pages install-man-pages: man-pages $(INSTALL_DIR) $(DESTDIR)$(mandir) @@ -90,22 +130,6 @@ install-html: html txt figs install: install-man-pages install-html # Individual file build targets -man1/%.1: man/%.pod.1 Makefile -ifneq ($(POD2MAN),) - @$(INSTALL_DIR) $(@D) - $(POD2MAN) --release=$(VERSION) --name=$* -s 1 -c "Xen" $< $@ -else - @echo "pod2man not installed; skipping $@" -endif - -man5/%.5: man/%.pod.5 Makefile -ifneq ($(POD2MAN),) - @$(INSTALL_DIR) $(@D) - $(POD2MAN) --release=$(VERSION) --name=$* -s 5 -c "Xen" $< $@ -else - @echo "pod2man not installed; skipping $@" -endif - html/index.html: $(DOC_HTML) $(CURDIR)/gen-html-index INDEX $(PERL) -w -- $(CURDIR)/gen-html-index -i INDEX html $(DOC_HTML) @@ -121,21 +145,6 @@ html/%.txt: %.txt @$(INSTALL_DIR) $(@D) $(INSTALL_DATA) $< $@ -html/man/%.1.html: man/%.pod.1 Makefile -ifneq ($(POD2HTML),) - @$(INSTALL_DIR) $(@D) - $(POD2HTML) --infile=$< --outfile=$@ -else - @echo "pod2html not installed; skipping $@" -endif - -html/man/%.5.html: man/%.pod.5 Makefile -ifneq ($(POD2HTML),) - @$(INSTALL_DIR) $(@D) - $(POD2HTML) --infile=$< --outfile=$@ -else - @echo "pod2html not installed; skipping $@" -endif # For non-x86 arches exclude the subarch whole x86 arch. $(foreach i,$(filter-out x86_32 x86_64,$(DOC_ARCHES)),html/hypercall/$(i)/index.html): EXTRA_EXCLUDE := -X arch-x86 @@ -160,22 +169,6 @@ txt/%.txt: %.markdown @$(INSTALL_DIR) $(@D) $(INSTALL_DATA) $< $@ -txt/man/%.1.txt: man/%.pod.1 Makefile -ifneq ($(POD2TEXT),) - @$(INSTALL_DIR) $(@D) - $(POD2TEXT) $< $@ -else - @echo "pod2text not installed; skipping $@" -endif - -txt/man/%.5.txt: man/%.pod.5 Makefile -ifneq ($(POD2TEXT),) - @$(INSTALL_DIR) $(@D) - $(POD2TEXT) $< $@ -else - @echo "pod2text not installed; skipping $@" -endif - pdf/%.pdf: %.markdown ifneq ($(PANDOC),) @$(INSTALL_DIR) $(@D) -- generated by git-patchbot for /home/xen/git/xen.git#master _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxx http://lists.xensource.com/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |