Makefile 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233
  1. # Makefile for Sphinx documentation
  2. #
  3. # You can set these variables from the command line.
  4. SPHINXOPTS =
  5. SPHINXBUILD = sphinx-build
  6. PAPER =
  7. BUILDDIR = _build
  8. # Internal variables.
  9. PAPEROPT_a4 = -D latex_paper_size=a4
  10. PAPEROPT_letter = -D latex_paper_size=letter
  11. ALLSPHINXOPTS = -d $(BUILDDIR)/doctrees $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) .
  12. # the i18n builder cannot share the environment and doctrees with the others
  13. I18NSPHINXOPTS = $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) .
  14. .PHONY: help
  15. help:
  16. @echo "Please use \`make <target>' where <target> is one of"
  17. @echo " html to make standalone HTML files"
  18. @echo " dirhtml to make HTML files named index.html in directories"
  19. @echo " singlehtml to make a single large HTML file"
  20. @echo " pickle to make pickle files"
  21. @echo " json to make JSON files"
  22. @echo " htmlhelp to make HTML files and a HTML help project"
  23. @echo " qthelp to make HTML files and a qthelp project"
  24. @echo " applehelp to make an Apple Help Book"
  25. @echo " devhelp to make HTML files and a Devhelp project"
  26. @echo " epub to make an epub"
  27. @echo " epub3 to make an epub3"
  28. @echo " latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter"
  29. @echo " latexpdf to make LaTeX files and run them through pdflatex"
  30. @echo " latexpdfja to make LaTeX files and run them through platex/dvipdfmx"
  31. @echo " text to make text files"
  32. @echo " man to make manual pages"
  33. @echo " texinfo to make Texinfo files"
  34. @echo " info to make Texinfo files and run them through makeinfo"
  35. @echo " gettext to make PO message catalogs"
  36. @echo " changes to make an overview of all changed/added/deprecated items"
  37. @echo " xml to make Docutils-native XML files"
  38. @echo " pseudoxml to make pseudoxml-XML files for display purposes"
  39. @echo " linkcheck to check all external links for integrity"
  40. @echo " doctest to run all doctests embedded in the documentation (if enabled)"
  41. @echo " coverage to run coverage check of the documentation (if enabled)"
  42. @echo " apicheck to verify that all modules are present in autodoc"
  43. @echo " configcheck to verify that all modules are present in autodoc"
  44. @echo " spelling to perform a spell check"
  45. .PHONY: clean
  46. clean:
  47. rm -rf $(BUILDDIR)/*
  48. .PHONY: html
  49. html:
  50. $(SPHINXBUILD) -b html $(ALLSPHINXOPTS) $(BUILDDIR)/html
  51. @echo
  52. @echo "Build finished. The HTML pages are in $(BUILDDIR)/html."
  53. .PHONY: dirhtml
  54. dirhtml:
  55. $(SPHINXBUILD) -b dirhtml $(ALLSPHINXOPTS) $(BUILDDIR)/dirhtml
  56. @echo
  57. @echo "Build finished. The HTML pages are in $(BUILDDIR)/dirhtml."
  58. .PHONY: singlehtml
  59. singlehtml:
  60. $(SPHINXBUILD) -b singlehtml $(ALLSPHINXOPTS) $(BUILDDIR)/singlehtml
  61. @echo
  62. @echo "Build finished. The HTML page is in $(BUILDDIR)/singlehtml."
  63. .PHONY: pickle
  64. pickle:
  65. $(SPHINXBUILD) -b pickle $(ALLSPHINXOPTS) $(BUILDDIR)/pickle
  66. @echo
  67. @echo "Build finished; now you can process the pickle files."
  68. .PHONY: json
  69. json:
  70. $(SPHINXBUILD) -b json $(ALLSPHINXOPTS) $(BUILDDIR)/json
  71. @echo
  72. @echo "Build finished; now you can process the JSON files."
  73. .PHONY: htmlhelp
  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. .PHONY: qthelp
  80. qthelp:
  81. $(SPHINXBUILD) -b qthelp $(ALLSPHINXOPTS) $(BUILDDIR)/qthelp
  82. @echo
  83. @echo "Build finished; now you can run "qcollectiongenerator" with the" \
  84. ".qhcp project file in $(BUILDDIR)/qthelp, like this:"
  85. @echo "# qcollectiongenerator $(BUILDDIR)/qthelp/PROJ.qhcp"
  86. @echo "To view the help file:"
  87. @echo "# assistant -collectionFile $(BUILDDIR)/qthelp/PROJ.qhc"
  88. .PHONY: applehelp
  89. applehelp:
  90. $(SPHINXBUILD) -b applehelp $(ALLSPHINXOPTS) $(BUILDDIR)/applehelp
  91. @echo
  92. @echo "Build finished. The help book is in $(BUILDDIR)/applehelp."
  93. @echo "N.B. You won't be able to view it unless you put it in" \
  94. "~/Library/Documentation/Help or install it in your application" \
  95. "bundle."
  96. .PHONY: devhelp
  97. devhelp:
  98. $(SPHINXBUILD) -b devhelp $(ALLSPHINXOPTS) $(BUILDDIR)/devhelp
  99. @echo
  100. @echo "Build finished."
  101. @echo "To view the help file:"
  102. @echo "# mkdir -p $$HOME/.local/share/devhelp/PROJ"
  103. @echo "# ln -s $(BUILDDIR)/devhelp $$HOME/.local/share/devhelp/PROJ"
  104. @echo "# devhelp"
  105. .PHONY: epub
  106. epub:
  107. $(SPHINXBUILD) -b epub $(ALLSPHINXOPTS) $(BUILDDIR)/epub
  108. @echo
  109. @echo "Build finished. The epub file is in $(BUILDDIR)/epub."
  110. .PHONY: epub3
  111. epub3:
  112. $(SPHINXBUILD) -b epub3 $(ALLSPHINXOPTS) $(BUILDDIR)/epub3
  113. @echo
  114. @echo "Build finished. The epub3 file is in $(BUILDDIR)/epub3."
  115. .PHONY: latex
  116. latex:
  117. $(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex
  118. @echo
  119. @echo "Build finished; the LaTeX files are in $(BUILDDIR)/latex."
  120. @echo "Run \`make' in that directory to run these through (pdf)latex" \
  121. "(use \`make latexpdf' here to do that automatically)."
  122. .PHONY: latexpdf
  123. latexpdf:
  124. $(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex
  125. @echo "Running LaTeX files through pdflatex..."
  126. $(MAKE) -C $(BUILDDIR)/latex all-pdf
  127. @echo "pdflatex finished; the PDF files are in $(BUILDDIR)/latex."
  128. .PHONY: latexpdfja
  129. latexpdfja:
  130. $(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex
  131. @echo "Running LaTeX files through platex and dvipdfmx..."
  132. $(MAKE) -C $(BUILDDIR)/latex all-pdf-ja
  133. @echo "pdflatex finished; the PDF files are in $(BUILDDIR)/latex."
  134. .PHONY: text
  135. text:
  136. $(SPHINXBUILD) -b text $(ALLSPHINXOPTS) $(BUILDDIR)/text
  137. @echo
  138. @echo "Build finished. The text files are in $(BUILDDIR)/text."
  139. .PHONY: man
  140. man:
  141. $(SPHINXBUILD) -b man $(ALLSPHINXOPTS) $(BUILDDIR)/man
  142. @echo
  143. @echo "Build finished. The manual pages are in $(BUILDDIR)/man."
  144. .PHONY: texinfo
  145. texinfo:
  146. $(SPHINXBUILD) -b texinfo $(ALLSPHINXOPTS) $(BUILDDIR)/texinfo
  147. @echo
  148. @echo "Build finished. The Texinfo files are in $(BUILDDIR)/texinfo."
  149. @echo "Run \`make' in that directory to run these through makeinfo" \
  150. "(use \`make info' here to do that automatically)."
  151. .PHONY: info
  152. info:
  153. $(SPHINXBUILD) -b texinfo $(ALLSPHINXOPTS) $(BUILDDIR)/texinfo
  154. @echo "Running Texinfo files through makeinfo..."
  155. make -C $(BUILDDIR)/texinfo info
  156. @echo "makeinfo finished; the Info files are in $(BUILDDIR)/texinfo."
  157. .PHONY: gettext
  158. gettext:
  159. $(SPHINXBUILD) -b gettext $(I18NSPHINXOPTS) $(BUILDDIR)/locale
  160. @echo
  161. @echo "Build finished. The message catalogs are in $(BUILDDIR)/locale."
  162. .PHONY: changes
  163. changes:
  164. $(SPHINXBUILD) -b changes $(ALLSPHINXOPTS) $(BUILDDIR)/changes
  165. @echo
  166. @echo "The overview file is in $(BUILDDIR)/changes."
  167. .PHONY: linkcheck
  168. linkcheck:
  169. $(SPHINXBUILD) -b linkcheck $(ALLSPHINXOPTS) $(BUILDDIR)/linkcheck
  170. @echo
  171. @echo "Link check complete; look for any errors in the above output " \
  172. "or in $(BUILDDIR)/linkcheck/output.txt."
  173. .PHONY: doctest
  174. doctest:
  175. $(SPHINXBUILD) -b doctest $(ALLSPHINXOPTS) $(BUILDDIR)/doctest
  176. @echo "Testing of doctests in the sources finished, look at the " \
  177. "results in $(BUILDDIR)/doctest/output.txt."
  178. .PHONY: coverage
  179. coverage:
  180. $(SPHINXBUILD) -b coverage $(ALLSPHINXOPTS) $(BUILDDIR)/coverage
  181. @echo "Testing of coverage in the sources finished, look at the " \
  182. "results in $(BUILDDIR)/coverage/python.txt."
  183. .PHONY: apicheck
  184. apicheck:
  185. $(SPHINXBUILD) -b apicheck $(ALLSPHINXOPTS) $(BUILDDIR)/apicheck
  186. .PHONY: configcheck
  187. configcheck:
  188. $(SPHINXBUILD) -b configcheck $(ALLSPHINXOPTS) $(BUILDDIR)/configcheck
  189. .PHONY: spelling
  190. spelling:
  191. SPELLCHECK=1 $(SPHINXBUILD) -b spelling $(ALLSPHINXOPTS) $(BUILDDIR)/spelling
  192. .PHONY: xml
  193. xml:
  194. $(SPHINXBUILD) -b xml $(ALLSPHINXOPTS) $(BUILDDIR)/xml
  195. @echo
  196. @echo "Build finished. The XML files are in $(BUILDDIR)/xml."
  197. .PHONY: pseudoxml
  198. pseudoxml:
  199. $(SPHINXBUILD) -b pseudoxml $(ALLSPHINXOPTS) $(BUILDDIR)/pseudoxml
  200. @echo
  201. @echo "Build finished. The pseudo-XML files are in $(BUILDDIR)/pseudoxml."