docs_common.mk 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210
  1. # "Common" Makefile for Sphinx documentation
  2. #
  3. # (included from en/Makefile & zh_CN/Makefile
  4. #
  5. # NOTE: This makefile runs with cwd=either en or zh_CN subfolder, so this
  6. # (docs/) directory is '..' relative to it.
  7. # ************ IMPORTANT *****************
  8. #
  9. # ReadTheDocs DOES NOT USE THIS MAKEFILE,
  10. # so any behaviour additions must be
  11. # done via Sphinx Config not here
  12. #
  13. # ****************************************
  14. # You can set these variables from the command line.
  15. SPHINXOPTS =
  16. # note: this is changed from sphinx-build so it depends on default python interpreter, not on /bin/sphinx-build
  17. # (which will be the most recently installed version of sphinx and may not match)
  18. SPHINXBUILD = python2 -m sphinx
  19. PAPER =
  20. BUILDDIR = _build
  21. # Internal variables.
  22. PAPEROPT_a4 = -D latex_paper_size=a4
  23. PAPEROPT_letter = -D latex_paper_size=letter
  24. ALLSPHINXOPTS = -d $(BUILDDIR)/doctrees $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) -w sphinx-warning-log.txt .
  25. # the i18n builder cannot share the environment and doctrees with the others
  26. I18NSPHINXOPTS = $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) .
  27. .PHONY: help clean html dirhtml singlehtml pickle json htmlhelp qthelp devhelp epub latex latexpdf text man changes linkcheck doctest gettext dependencies version-specific-includes
  28. help:
  29. @echo "Please use \`make <target>\' where <target> is one of"
  30. @echo " html to make standalone HTML files"
  31. @echo " dirhtml to make HTML files named index.html in directories"
  32. @echo " singlehtml to make a single large HTML file"
  33. @echo " pickle to make pickle files"
  34. @echo " json to make JSON files"
  35. @echo " htmlhelp to make HTML files and a HTML help project"
  36. @echo " qthelp to make HTML files and a qthelp project"
  37. @echo " devhelp to make HTML files and a Devhelp project"
  38. @echo " epub to make an epub"
  39. @echo " latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter"
  40. @echo " latexpdf to make LaTeX files and run them through pdflatex"
  41. @echo " latexpdfja to make LaTeX files and run them through platex/dvipdfmx"
  42. @echo " text to make text files"
  43. @echo " man to make manual pages"
  44. @echo " texinfo to make Texinfo files"
  45. @echo " info to make Texinfo files and run them through makeinfo"
  46. @echo " gettext to make PO message catalogs"
  47. @echo " changes to make an overview of all changed/added/deprecated items"
  48. @echo " xml to make Docutils-native XML files"
  49. @echo " pseudoxml to make pseudoxml-XML files for display purposes"
  50. @echo " linkcheck to check all external links for integrity"
  51. @echo " doctest to run all doctests embedded in the documentation (if enabled) "
  52. clean:
  53. rm -rf $(BUILDDIR)/*
  54. html:
  55. $(SPHINXBUILD) -b html $(ALLSPHINXOPTS) $(BUILDDIR)/html
  56. @echo
  57. @echo "Build finished. The HTML pages are in $(BUILDDIR)/html."
  58. dirhtml:
  59. $(SPHINXBUILD) -b dirhtml $(ALLSPHINXOPTS) $(BUILDDIR)/dirhtml
  60. @echo
  61. @echo "Build finished. The HTML pages are in $(BUILDDIR)/dirhtml."
  62. singlehtml:
  63. $(SPHINXBUILD) -b singlehtml $(ALLSPHINXOPTS) $(BUILDDIR)/singlehtml
  64. @echo
  65. @echo "Build finished. The HTML page is in $(BUILDDIR)/singlehtml."
  66. pickle:
  67. $(SPHINXBUILD) -b pickle $(ALLSPHINXOPTS) $(BUILDDIR)/pickle
  68. @echo
  69. @echo "Build finished; now you can process the pickle files."
  70. json:
  71. $(SPHINXBUILD) -b json $(ALLSPHINXOPTS) $(BUILDDIR)/json
  72. @echo
  73. @echo "Build finished; now you can process the JSON files."
  74. htmlhelp:
  75. $(SPHINXBUILD) -b htmlhelp $(ALLSPHINXOPTS) $(BUILDDIR)/htmlhelp
  76. @echo
  77. @echo "Build finished; now you can run HTML Help Workshop with the" \
  78. ".hhp project file in $(BUILDDIR)/htmlhelp."
  79. qthelp:
  80. $(SPHINXBUILD) -b qthelp $(ALLSPHINXOPTS) $(BUILDDIR)/qthelp
  81. @echo
  82. @echo "Build finished; now you can run "qcollectiongenerator" with the" \
  83. ".qhcp project file in $(BUILDDIR)/qthelp, like this:"
  84. @echo "# qcollectiongenerator $(BUILDDIR)/qthelp/ReadtheDocsTemplate.qhcp"
  85. @echo "To view the help file:"
  86. @echo "# assistant -collectionFile $(BUILDDIR)/qthelp/ReadtheDocsTemplate.qhc"
  87. devhelp:
  88. $(SPHINXBUILD) -b devhelp $(ALLSPHINXOPTS) $(BUILDDIR)/devhelp
  89. @echo
  90. @echo "Build finished."
  91. @echo "To view the help file:"
  92. @echo "# mkdir -p $$HOME/.local/share/devhelp/ReadtheDocsTemplate"
  93. @echo "# ln -s $(BUILDDIR)/devhelp $$HOME/.local/share/devhelp/ReadtheDocsTemplate"
  94. @echo "# devhelp"
  95. epub:
  96. $(SPHINXBUILD) -b epub $(ALLSPHINXOPTS) $(BUILDDIR)/epub
  97. @echo
  98. @echo "Build finished. The epub file is in $(BUILDDIR)/epub."
  99. latex:
  100. $(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex
  101. @echo
  102. @echo "Build finished; the LaTeX files are in $(BUILDDIR)/latex."
  103. @echo "Run \`make' in that directory to run these through (pdf)latex" \
  104. "(use \`make latexpdf' here to do that automatically)."
  105. latexpdf:
  106. $(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex
  107. @echo "Running LaTeX files through pdflatex..."
  108. $(MAKE) -C $(BUILDDIR)/latex all-pdf
  109. @echo "pdflatex finished; the PDF files are in $(BUILDDIR)/latex."
  110. latexpdfja:
  111. $(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex
  112. @echo "Running LaTeX files through platex and dvipdfmx..."
  113. $(MAKE) -C $(BUILDDIR)/latex all-pdf-ja
  114. @echo "pdflatex finished; the PDF files are in $(BUILDDIR)/latex."
  115. text:
  116. $(SPHINXBUILD) -b text $(ALLSPHINXOPTS) $(BUILDDIR)/text
  117. @echo
  118. @echo "Build finished. The text files are in $(BUILDDIR)/text."
  119. man:
  120. $(SPHINXBUILD) -b man $(ALLSPHINXOPTS) $(BUILDDIR)/man
  121. @echo
  122. @echo "Build finished. The manual pages are in $(BUILDDIR)/man."
  123. texinfo:
  124. $(SPHINXBUILD) -b texinfo $(ALLSPHINXOPTS) $(BUILDDIR)/texinfo
  125. @echo
  126. @echo "Build finished. The Texinfo files are in $(BUILDDIR)/texinfo."
  127. @echo "Run \`make' in that directory to run these through makeinfo" \
  128. "(use \`make info' here to do that automatically)."
  129. info:
  130. $(SPHINXBUILD) -b texinfo $(ALLSPHINXOPTS) $(BUILDDIR)/texinfo
  131. @echo "Running Texinfo files through makeinfo..."
  132. make -C $(BUILDDIR)/texinfo info
  133. @echo "makeinfo finished; the Info files are in $(BUILDDIR)/texinfo."
  134. gettext:
  135. $(SPHINXBUILD) -b gettext $(I18NSPHINXOPTS) $(BUILDDIR)/locale
  136. @echo
  137. @echo "Build finished. The message catalogs are in $(BUILDDIR)/locale."
  138. changes:
  139. $(SPHINXBUILD) -b changes $(ALLSPHINXOPTS) $(BUILDDIR)/changes
  140. @echo
  141. @echo "The overview file is in $(BUILDDIR)/changes."
  142. linkcheck:
  143. $(SPHINXBUILD) -b linkcheck $(ALLSPHINXOPTS) $(BUILDDIR)/linkcheck
  144. @echo
  145. @echo "Link check complete; look for any errors in the above output " \
  146. "or in $(BUILDDIR)/linkcheck/output.txt."
  147. gh-linkcheck:
  148. @echo "Checking for hardcoded GitHub links"
  149. @if (find ../ -name '*.rst' | xargs grep \
  150. 'https://github.com/espressif/esp-idf/tree\|https://github.com/espressif/esp-idf/blob\|https://github.com/espressif/esp-idf/raw'\
  151. ); \
  152. then \
  153. echo "WARNINIG: Some .rst files contain hardcoded Github links."; \
  154. echo "Please check above output and replace links with one of the following:"; \
  155. echo "- :idf:\`dir\` - points to directory inside ESP-IDF"; \
  156. echo "- :idf_file:\`file\` - points to file inside ESP-IDF"; \
  157. echo "- :idf_raw:\`file\` - points to raw view of the file inside ESP-IDF"; \
  158. echo "- :component:\`dir\` - points to directory inside ESP-IDF components dir"; \
  159. echo "- :component_file:\`file\` - points to file inside ESP-IDF components dir"; \
  160. echo "- :component_raw:\`file\` - points to raw view of the file inside ESP-IDF"; \
  161. echo " components dir"; \
  162. echo "- :example:\`dir\` - points to directory inside ESP-IDF examples dir"; \
  163. echo "- :example_file:\`file\` - points to file inside ESP-IDF examples dir"; \
  164. echo "- :example_raw:\`file\` - points to raw view of the file inside ESP-IDF"; \
  165. echo " examples dir"; \
  166. echo "These link types will point to the correct GitHub version automatically"; \
  167. exit 1; \
  168. fi
  169. @echo "No hardcoded links found"
  170. doctest:
  171. $(SPHINXBUILD) -b doctest $(ALLSPHINXOPTS) $(BUILDDIR)/doctest
  172. @echo "Testing of doctests in the sources finished, look at the " \
  173. "results in $(BUILDDIR)/doctest/output.txt."
  174. xml:
  175. $(SPHINXBUILD) -b xml $(ALLSPHINXOPTS) $(BUILDDIR)/xml
  176. @echo
  177. @echo "Build finished. The XML files are in $(BUILDDIR)/xml."
  178. pseudoxml:
  179. $(SPHINXBUILD) -b pseudoxml $(ALLSPHINXOPTS) $(BUILDDIR)/pseudoxml
  180. @echo
  181. @echo "Build finished. The pseudo-XML files are in $(BUILDDIR)/pseudoxml."