manual.mk 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  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. $$(O)/docs/$(1)/$(1).$(4): docs/$(1)/$(1).txt \
  54. $$($$(call UPPERCASE,$(1))_SOURCES) \
  55. manual-check-dependencies \
  56. manual-check-dependencies-$(3) \
  57. manual-update-lists
  58. $$(Q)$$(call MESSAGE,"Generating $(5) $(1)...")
  59. $$(Q)mkdir -p $$(@D)/.build
  60. $$(Q)rsync -au docs/$(1)/*.txt $$(@D)/.build
  61. $$(Q)a2x $(6) -f $(2) -d book -L -r $$(TOPDIR)/docs/images \
  62. -D $$(@D) $$(@D)/.build/$(1).txt
  63. -$$(Q)rm -rf $$(@D)/.build
  64. endef
  65. ################################################################################
  66. # GENDOC -- generates the make targets needed to build asciidoc documentation.
  67. #
  68. # argument 1 is the name of the document and must be a subdirectory of docs/;
  69. # the top-level asciidoc file must have the same name
  70. #
  71. # The variable <DOCUMENT_NAME>_SOURCES defines the dependencies.
  72. ################################################################################
  73. define GENDOC
  74. $(call GENDOC_INNER,$(1),xhtml,html,html,HTML,--xsltproc-opts "--stringparam toc.section.depth 2")
  75. $(call GENDOC_INNER,$(1),chunked,split-html,chunked,split HTML,--xsltproc-opts "--stringparam toc.section.depth 2")
  76. $(call GENDOC_INNER,$(1),pdf,pdf,pdf,PDF,--dblatex-opts "-P latex.output.revhistory=0")
  77. $(call GENDOC_INNER,$(1),text,text,text,text)
  78. $(call GENDOC_INNER,$(1),epub,epub,epub,ePUB)
  79. clean: $(1)-clean
  80. $(1)-clean:
  81. $$(Q)$$(RM) -rf $$(O)/docs/$(1)
  82. .PHONY: $(1) $(1)-clean manual-update-lists
  83. endef
  84. MANUAL_SOURCES = $(sort $(wildcard docs/manual/*.txt) $(wildcard docs/images/*))
  85. $(eval $(call GENDOC,manual))