manual.mk 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. # Packages included in BR2_EXTERNAL are not part of buildroot, so they
  2. # should not be included in the manual.
  3. manual-update-lists: manual-check-dependencies-lists
  4. $(Q)$(call MESSAGE,"Updating the manual lists...")
  5. $(Q)BR2_DEFCONFIG="" TOPDIR=$(TOPDIR) O=$(O)/docs/manual/.build \
  6. BR2_EXTERNAL=$(TOPDIR)/support/dummy-external \
  7. python -B $(TOPDIR)/support/scripts/gen-manual-lists.py
  8. # we can't use suitable-host-package here because that's not available in
  9. # the context of 'make release'
  10. manual-check-dependencies:
  11. $(Q)if [ -z "$(shell support/dependencies/check-host-asciidoc.sh)" ]; then \
  12. echo "You need a sufficiently recent asciidoc on your host" \
  13. "to generate the manual"; \
  14. exit 1; \
  15. fi
  16. $(Q)if [ -z "`which w3m 2>/dev/null`" ]; then \
  17. echo "You need w3m on your host to generate the manual"; \
  18. exit 1; \
  19. fi
  20. manual-check-dependencies-pdf:
  21. $(Q)if [ -z "`which dblatex 2>/dev/null`" ]; then \
  22. echo "You need dblatex on your host to generate the pdf manual"; \
  23. exit 1; \
  24. fi
  25. manual-check-dependencies-lists:
  26. $(Q)if ! python -c "import argparse" >/dev/null 2>&1 ; then \
  27. echo "You need python with argparse on your host to generate" \
  28. "the list of packages in the manual"; \
  29. exit 1; \
  30. fi
  31. ################################################################################
  32. # GENDOC_INNER -- generates the make targets needed to build a specific type of
  33. # asciidoc documentation.
  34. #
  35. # argument 1 is the name of the document and must be a subdirectory of docs/;
  36. # the top-level asciidoc file must have the same name
  37. # argument 2 is the type of document to generate (-f argument of a2x)
  38. # argument 3 is the document type as used in the make target
  39. # argument 4 is the output file extension for the document type
  40. # argument 5 is the human text for the document type
  41. # argument 6 (optional) are extra arguments for a2x
  42. #
  43. # The variable <DOCUMENT_NAME>_SOURCES defines the dependencies.
  44. #
  45. # Since this function will be called from within an $(eval ...)
  46. # all variable references except the arguments must be $$-quoted.
  47. ################################################################################
  48. define GENDOC_INNER
  49. $(1): $(1)-$(3)
  50. .PHONY: $(1)-$(3)
  51. $(1)-$(3): $$(O)/docs/$(1)/$(1).$(4)
  52. manual-check-dependencies-$(3):
  53. MANUAL_$(2)_ASCIIDOC_CONF = docs/$(1)/asciidoc-$(2).conf
  54. ifneq ($$(wildcard $$(MANUAL_$(2)_ASCIIDOC_CONF)),)
  55. MANUAL_$(2)_ASCIIDOC_OPTS += -f $$(MANUAL_$(2)_ASCIIDOC_CONF)
  56. endif
  57. $$(O)/docs/$(1)/$(1).$(4): docs/$(1)/$(1).txt \
  58. $$($$(call UPPERCASE,$(1))_SOURCES) \
  59. manual-check-dependencies \
  60. manual-check-dependencies-$(3) \
  61. manual-update-lists
  62. $$(Q)$$(call MESSAGE,"Generating $(5) $(1)...")
  63. $$(Q)mkdir -p $$(@D)/.build
  64. $$(Q)rsync -au docs/$(1)/*.txt $$(@D)/.build
  65. $$(Q)a2x $(6) -f $(2) -d book -L -r $$(TOPDIR)/docs/images \
  66. -D $$(@D) $$(@D)/.build/$(1).txt \
  67. --asciidoc-opts="$$(MANUAL_$(2)_ASCIIDOC_OPTS)"
  68. -$$(Q)rm -rf $$(@D)/.build
  69. endef
  70. ################################################################################
  71. # GENDOC -- generates the make targets needed to build asciidoc documentation.
  72. #
  73. # argument 1 is the name of the document and must be a subdirectory of docs/;
  74. # the top-level asciidoc file must have the same name
  75. #
  76. # The variable <DOCUMENT_NAME>_SOURCES defines the dependencies.
  77. ################################################################################
  78. define GENDOC
  79. $(call GENDOC_INNER,$(pkgname),xhtml,html,html,HTML,--xsltproc-opts "--stringparam toc.section.depth 1")
  80. $(call GENDOC_INNER,$(pkgname),chunked,split-html,chunked,split HTML,--xsltproc-opts "--stringparam toc.section.depth 1")
  81. $(call GENDOC_INNER,$(pkgname),pdf,pdf,pdf,PDF,--dblatex-opts "-P latex.output.revhistory=0")
  82. $(call GENDOC_INNER,$(pkgname),text,text,text,text)
  83. $(call GENDOC_INNER,$(pkgname),epub,epub,epub,ePUB)
  84. clean: $(pkgname)-clean
  85. $(pkgname)-clean:
  86. $$(Q)$$(RM) -rf $$(O)/docs/$(pkgname)
  87. .PHONY: $(pkgname) $(pkgname)-clean manual-update-lists
  88. endef
  89. MANUAL_SOURCES = $(sort $(wildcard docs/manual/*.txt) $(wildcard docs/images/*))
  90. $(eval $(call GENDOC))