You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

242 lines
8.2 KiB

  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_elements.papersize=a4
  10. PAPEROPT_letter = -D latex_elements.papersize=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 an 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 " lualatexpdf to make LaTeX files and run them through lualatex"
  32. @echo " xelatexpdf to make LaTeX files and run them through xelatex"
  33. @echo " text to make text files"
  34. @echo " man to make manual pages"
  35. @echo " texinfo to make Texinfo files"
  36. @echo " info to make Texinfo files and run them through makeinfo"
  37. @echo " gettext to make PO message catalogs"
  38. @echo " changes to make an overview of all changed/added/deprecated items"
  39. @echo " xml to make Docutils-native XML files"
  40. @echo " pseudoxml to make pseudoxml-XML files for display purposes"
  41. @echo " linkcheck to check all external links for integrity"
  42. @echo " doctest to run all doctests embedded in the documentation (if enabled)"
  43. @echo " coverage to run coverage check of the documentation (if enabled)"
  44. @echo " dummy to check syntax errors of document sources"
  45. .PHONY: clean
  46. clean:
  47. rm -rf $(BUILDDIR)/*
  48. .PHONY: html
  49. html:
  50. cp $(BUILDDIR)/../../README.md $(BUILDDIR)/../README.md
  51. $(SPHINXBUILD) -b html $(ALLSPHINXOPTS) $(BUILDDIR)/html
  52. @echo
  53. @echo "Build finished. The HTML pages are in $(BUILDDIR)/html."
  54. .PHONY: dirhtml
  55. dirhtml:
  56. $(SPHINXBUILD) -b dirhtml $(ALLSPHINXOPTS) $(BUILDDIR)/dirhtml
  57. @echo
  58. @echo "Build finished. The HTML pages are in $(BUILDDIR)/dirhtml."
  59. .PHONY: singlehtml
  60. singlehtml:
  61. $(SPHINXBUILD) -b singlehtml $(ALLSPHINXOPTS) $(BUILDDIR)/singlehtml
  62. @echo
  63. @echo "Build finished. The HTML page is in $(BUILDDIR)/singlehtml."
  64. .PHONY: pickle
  65. pickle:
  66. $(SPHINXBUILD) -b pickle $(ALLSPHINXOPTS) $(BUILDDIR)/pickle
  67. @echo
  68. @echo "Build finished; now you can process the pickle files."
  69. .PHONY: json
  70. json:
  71. $(SPHINXBUILD) -b json $(ALLSPHINXOPTS) $(BUILDDIR)/json
  72. @echo
  73. @echo "Build finished; now you can process the JSON files."
  74. .PHONY: htmlhelp
  75. htmlhelp:
  76. $(SPHINXBUILD) -b htmlhelp $(ALLSPHINXOPTS) $(BUILDDIR)/htmlhelp
  77. @echo
  78. @echo "Build finished; now you can run HTML Help Workshop with the" \
  79. ".hhp project file in $(BUILDDIR)/htmlhelp."
  80. .PHONY: qthelp
  81. qthelp:
  82. $(SPHINXBUILD) -b qthelp $(ALLSPHINXOPTS) $(BUILDDIR)/qthelp
  83. @echo
  84. @echo "Build finished; now you can run "qcollectiongenerator" with the" \
  85. ".qhcp project file in $(BUILDDIR)/qthelp, like this:"
  86. @echo "# qcollectiongenerator $(BUILDDIR)/qthelp/nd2reader.qhcp"
  87. @echo "To view the help file:"
  88. @echo "# assistant -collectionFile $(BUILDDIR)/qthelp/nd2reader.qhc"
  89. .PHONY: applehelp
  90. applehelp:
  91. $(SPHINXBUILD) -b applehelp $(ALLSPHINXOPTS) $(BUILDDIR)/applehelp
  92. @echo
  93. @echo "Build finished. The help book is in $(BUILDDIR)/applehelp."
  94. @echo "N.B. You won't be able to view it unless you put it in" \
  95. "~/Library/Documentation/Help or install it in your application" \
  96. "bundle."
  97. .PHONY: devhelp
  98. devhelp:
  99. $(SPHINXBUILD) -b devhelp $(ALLSPHINXOPTS) $(BUILDDIR)/devhelp
  100. @echo
  101. @echo "Build finished."
  102. @echo "To view the help file:"
  103. @echo "# mkdir -p $$HOME/.local/share/devhelp/nd2reader"
  104. @echo "# ln -s $(BUILDDIR)/devhelp $$HOME/.local/share/devhelp/nd2reader"
  105. @echo "# devhelp"
  106. .PHONY: epub
  107. epub:
  108. $(SPHINXBUILD) -b epub $(ALLSPHINXOPTS) $(BUILDDIR)/epub
  109. @echo
  110. @echo "Build finished. The epub file is in $(BUILDDIR)/epub."
  111. .PHONY: epub3
  112. epub3:
  113. $(SPHINXBUILD) -b epub3 $(ALLSPHINXOPTS) $(BUILDDIR)/epub3
  114. @echo
  115. @echo "Build finished. The epub3 file is in $(BUILDDIR)/epub3."
  116. .PHONY: latex
  117. latex:
  118. $(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex
  119. @echo
  120. @echo "Build finished; the LaTeX files are in $(BUILDDIR)/latex."
  121. @echo "Run \`make' in that directory to run these through (pdf)latex" \
  122. "(use \`make latexpdf' here to do that automatically)."
  123. .PHONY: latexpdf
  124. latexpdf:
  125. $(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex
  126. @echo "Running LaTeX files through pdflatex..."
  127. $(MAKE) -C $(BUILDDIR)/latex all-pdf
  128. @echo "pdflatex finished; the PDF files are in $(BUILDDIR)/latex."
  129. .PHONY: latexpdfja
  130. latexpdfja:
  131. $(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex
  132. @echo "Running LaTeX files through platex and dvipdfmx..."
  133. $(MAKE) -C $(BUILDDIR)/latex all-pdf-ja
  134. @echo "pdflatex finished; the PDF files are in $(BUILDDIR)/latex."
  135. .PHONY: lualatexpdf
  136. lualatexpdf:
  137. $(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex
  138. @echo "Running LaTeX files through lualatex..."
  139. $(MAKE) PDFLATEX=lualatex -C $(BUILDDIR)/latex all-pdf
  140. @echo "lualatex finished; the PDF files are in $(BUILDDIR)/latex."
  141. .PHONY: xelatexpdf
  142. xelatexpdf:
  143. $(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex
  144. @echo "Running LaTeX files through xelatex..."
  145. $(MAKE) PDFLATEX=xelatex -C $(BUILDDIR)/latex all-pdf
  146. @echo "xelatex finished; the PDF files are in $(BUILDDIR)/latex."
  147. .PHONY: text
  148. text:
  149. $(SPHINXBUILD) -b text $(ALLSPHINXOPTS) $(BUILDDIR)/text
  150. @echo
  151. @echo "Build finished. The text files are in $(BUILDDIR)/text."
  152. .PHONY: man
  153. man:
  154. $(SPHINXBUILD) -b man $(ALLSPHINXOPTS) $(BUILDDIR)/man
  155. @echo
  156. @echo "Build finished. The manual pages are in $(BUILDDIR)/man."
  157. .PHONY: texinfo
  158. texinfo:
  159. $(SPHINXBUILD) -b texinfo $(ALLSPHINXOPTS) $(BUILDDIR)/texinfo
  160. @echo
  161. @echo "Build finished. The Texinfo files are in $(BUILDDIR)/texinfo."
  162. @echo "Run \`make' in that directory to run these through makeinfo" \
  163. "(use \`make info' here to do that automatically)."
  164. .PHONY: info
  165. info:
  166. $(SPHINXBUILD) -b texinfo $(ALLSPHINXOPTS) $(BUILDDIR)/texinfo
  167. @echo "Running Texinfo files through makeinfo..."
  168. make -C $(BUILDDIR)/texinfo info
  169. @echo "makeinfo finished; the Info files are in $(BUILDDIR)/texinfo."
  170. .PHONY: gettext
  171. gettext:
  172. $(SPHINXBUILD) -b gettext $(I18NSPHINXOPTS) $(BUILDDIR)/locale
  173. @echo
  174. @echo "Build finished. The message catalogs are in $(BUILDDIR)/locale."
  175. .PHONY: changes
  176. changes:
  177. $(SPHINXBUILD) -b changes $(ALLSPHINXOPTS) $(BUILDDIR)/changes
  178. @echo
  179. @echo "The overview file is in $(BUILDDIR)/changes."
  180. .PHONY: linkcheck
  181. linkcheck:
  182. $(SPHINXBUILD) -b linkcheck $(ALLSPHINXOPTS) $(BUILDDIR)/linkcheck
  183. @echo
  184. @echo "Link check complete; look for any errors in the above output " \
  185. "or in $(BUILDDIR)/linkcheck/output.txt."
  186. .PHONY: doctest
  187. doctest:
  188. $(SPHINXBUILD) -b doctest $(ALLSPHINXOPTS) $(BUILDDIR)/doctest
  189. @echo "Testing of doctests in the sources finished, look at the " \
  190. "results in $(BUILDDIR)/doctest/output.txt."
  191. .PHONY: coverage
  192. coverage:
  193. $(SPHINXBUILD) -b coverage $(ALLSPHINXOPTS) $(BUILDDIR)/coverage
  194. @echo "Testing of coverage in the sources finished, look at the " \
  195. "results in $(BUILDDIR)/coverage/python.txt."
  196. .PHONY: xml
  197. xml:
  198. $(SPHINXBUILD) -b xml $(ALLSPHINXOPTS) $(BUILDDIR)/xml
  199. @echo
  200. @echo "Build finished. The XML files are in $(BUILDDIR)/xml."
  201. .PHONY: pseudoxml
  202. pseudoxml:
  203. $(SPHINXBUILD) -b pseudoxml $(ALLSPHINXOPTS) $(BUILDDIR)/pseudoxml
  204. @echo
  205. @echo "Build finished. The pseudo-XML files are in $(BUILDDIR)/pseudoxml."
  206. .PHONY: dummy
  207. dummy:
  208. $(SPHINXBUILD) -b dummy $(ALLSPHINXOPTS) $(BUILDDIR)/dummy
  209. @echo
  210. @echo "Build finished. Dummy builder generates no files."