Makefile 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209
  1. #
  2. # Licensed to the Apache Software Foundation (ASF) under one or more
  3. # contributor license agreements. See the NOTICE file distributed with
  4. # this work for additional information regarding copyright ownership.
  5. # The ASF licenses this file to You under the Apache License, Version 2.0
  6. # (the "License"); you may not use this file except in compliance with
  7. # the License. You may obtain a copy of the License at
  8. #
  9. # http://www.apache.org/licenses/LICENSE-2.0
  10. #
  11. # Unless required by applicable law or agreed to in writing, software
  12. # distributed under the License is distributed on an "AS IS" BASIS,
  13. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. # See the License for the specific language governing permissions and
  15. # limitations under the License.
  16. #
  17. # Makefile for Sphinx documentation
  18. #
  19. # You can set these variables from the command line.
  20. SPHINXOPTS =
  21. SPHINXBUILD = sphinx-build
  22. PAPER =
  23. BUILDDIR = _build
  24. # User-friendly check for sphinx-build
  25. ifeq ($(shell which $(SPHINXBUILD) >/dev/null 2>&1; echo $$?), 1)
  26. $(error The '$(SPHINXBUILD)' command was not found. Make sure you have Sphinx installed, then set the SPHINXBUILD environment variable to point to the full path of the '$(SPHINXBUILD)' executable. Alternatively you can add the directory with the executable to your PATH. If you don't have Sphinx installed, grab it from https://sphinx-doc.org/)
  27. endif
  28. # Internal variables.
  29. PAPEROPT_a4 = -D latex_paper_size=a4
  30. PAPEROPT_letter = -D latex_paper_size=letter
  31. ALLSPHINXOPTS = -d $(BUILDDIR)/doctrees $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) .
  32. # the i18n builder cannot share the environment and doctrees with the others
  33. I18NSPHINXOPTS = $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) .
  34. .PHONY: help clean html dirhtml singlehtml pickle json htmlhelp qthelp devhelp epub latex latexpdf text man changes linkcheck doctest coverage gettext
  35. help:
  36. @echo "Please use \`make <target>' where <target> is one of"
  37. @echo " html to make standalone HTML files"
  38. @echo " dirhtml to make HTML files named index.html in directories"
  39. @echo " singlehtml to make a single large HTML file"
  40. @echo " pickle to make pickle files"
  41. @echo " json to make JSON files"
  42. @echo " htmlhelp to make HTML files and a HTML help project"
  43. @echo " qthelp to make HTML files and a qthelp project"
  44. @echo " applehelp to make an Apple Help Book"
  45. @echo " devhelp to make HTML files and a Devhelp project"
  46. @echo " epub to make an epub"
  47. @echo " latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter"
  48. @echo " latexpdf to make LaTeX files and run them through pdflatex"
  49. @echo " latexpdfja to make LaTeX files and run them through platex/dvipdfmx"
  50. @echo " text to make text files"
  51. @echo " man to make manual pages"
  52. @echo " texinfo to make Texinfo files"
  53. @echo " info to make Texinfo files and run them through makeinfo"
  54. @echo " gettext to make PO message catalogs"
  55. @echo " changes to make an overview of all changed/added/deprecated items"
  56. @echo " xml to make Docutils-native XML files"
  57. @echo " pseudoxml to make pseudoxml-XML files for display purposes"
  58. @echo " linkcheck to check all external links for integrity"
  59. @echo " doctest to run all doctests embedded in the documentation (if enabled)"
  60. @echo " coverage to run coverage check of the documentation (if enabled)"
  61. clean:
  62. rm -rf $(BUILDDIR)/*
  63. html:
  64. $(SPHINXBUILD) -b html $(ALLSPHINXOPTS) $(BUILDDIR)/html
  65. @echo
  66. @echo "Build finished. The HTML pages are in $(BUILDDIR)/html."
  67. dirhtml:
  68. $(SPHINXBUILD) -b dirhtml $(ALLSPHINXOPTS) $(BUILDDIR)/dirhtml
  69. @echo
  70. @echo "Build finished. The HTML pages are in $(BUILDDIR)/dirhtml."
  71. singlehtml:
  72. $(SPHINXBUILD) -b singlehtml $(ALLSPHINXOPTS) $(BUILDDIR)/singlehtml
  73. @echo
  74. @echo "Build finished. The HTML page is in $(BUILDDIR)/singlehtml."
  75. pickle:
  76. $(SPHINXBUILD) -b pickle $(ALLSPHINXOPTS) $(BUILDDIR)/pickle
  77. @echo
  78. @echo "Build finished; now you can process the pickle files."
  79. json:
  80. $(SPHINXBUILD) -b json $(ALLSPHINXOPTS) $(BUILDDIR)/json
  81. @echo
  82. @echo "Build finished; now you can process the JSON files."
  83. htmlhelp:
  84. $(SPHINXBUILD) -b htmlhelp $(ALLSPHINXOPTS) $(BUILDDIR)/htmlhelp
  85. @echo
  86. @echo "Build finished; now you can run HTML Help Workshop with the" \
  87. ".hhp project file in $(BUILDDIR)/htmlhelp."
  88. qthelp:
  89. $(SPHINXBUILD) -b qthelp $(ALLSPHINXOPTS) $(BUILDDIR)/qthelp
  90. @echo
  91. @echo "Build finished; now you can run "qcollectiongenerator" with the" \
  92. ".qhcp project file in $(BUILDDIR)/qthelp, like this:"
  93. @echo "# qcollectiongenerator $(BUILDDIR)/qthelp/superset.qhcp"
  94. @echo "To view the help file:"
  95. @echo "# assistant -collectionFile $(BUILDDIR)/qthelp/superset.qhc"
  96. applehelp:
  97. $(SPHINXBUILD) -b applehelp $(ALLSPHINXOPTS) $(BUILDDIR)/applehelp
  98. @echo
  99. @echo "Build finished. The help book is in $(BUILDDIR)/applehelp."
  100. @echo "N.B. You won't be able to view it unless you put it in" \
  101. "~/Library/Documentation/Help or install it in your application" \
  102. "bundle."
  103. devhelp:
  104. $(SPHINXBUILD) -b devhelp $(ALLSPHINXOPTS) $(BUILDDIR)/devhelp
  105. @echo
  106. @echo "Build finished."
  107. @echo "To view the help file:"
  108. @echo "# mkdir -p $$HOME/.local/share/devhelp/superset"
  109. @echo "# ln -s $(BUILDDIR)/devhelp $$HOME/.local/share/devhelp/superset"
  110. @echo "# devhelp"
  111. epub:
  112. $(SPHINXBUILD) -b epub $(ALLSPHINXOPTS) $(BUILDDIR)/epub
  113. @echo
  114. @echo "Build finished. The epub file is in $(BUILDDIR)/epub."
  115. latex:
  116. $(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex
  117. @echo
  118. @echo "Build finished; the LaTeX files are in $(BUILDDIR)/latex."
  119. @echo "Run \`make' in that directory to run these through (pdf)latex" \
  120. "(use \`make latexpdf' here to do that automatically)."
  121. latexpdf:
  122. $(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex
  123. @echo "Running LaTeX files through pdflatex..."
  124. $(MAKE) -C $(BUILDDIR)/latex all-pdf
  125. @echo "pdflatex finished; the PDF files are in $(BUILDDIR)/latex."
  126. latexpdfja:
  127. $(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex
  128. @echo "Running LaTeX files through platex and dvipdfmx..."
  129. $(MAKE) -C $(BUILDDIR)/latex all-pdf-ja
  130. @echo "pdflatex finished; the PDF files are in $(BUILDDIR)/latex."
  131. text:
  132. $(SPHINXBUILD) -b text $(ALLSPHINXOPTS) $(BUILDDIR)/text
  133. @echo
  134. @echo "Build finished. The text files are in $(BUILDDIR)/text."
  135. man:
  136. $(SPHINXBUILD) -b man $(ALLSPHINXOPTS) $(BUILDDIR)/man
  137. @echo
  138. @echo "Build finished. The manual pages are in $(BUILDDIR)/man."
  139. texinfo:
  140. $(SPHINXBUILD) -b texinfo $(ALLSPHINXOPTS) $(BUILDDIR)/texinfo
  141. @echo
  142. @echo "Build finished. The Texinfo files are in $(BUILDDIR)/texinfo."
  143. @echo "Run \`make' in that directory to run these through makeinfo" \
  144. "(use \`make info' here to do that automatically)."
  145. info:
  146. $(SPHINXBUILD) -b texinfo $(ALLSPHINXOPTS) $(BUILDDIR)/texinfo
  147. @echo "Running Texinfo files through makeinfo..."
  148. make -C $(BUILDDIR)/texinfo info
  149. @echo "makeinfo finished; the Info files are in $(BUILDDIR)/texinfo."
  150. gettext:
  151. $(SPHINXBUILD) -b gettext $(I18NSPHINXOPTS) $(BUILDDIR)/locale
  152. @echo
  153. @echo "Build finished. The message catalogs are in $(BUILDDIR)/locale."
  154. changes:
  155. $(SPHINXBUILD) -b changes $(ALLSPHINXOPTS) $(BUILDDIR)/changes
  156. @echo
  157. @echo "The overview file is in $(BUILDDIR)/changes."
  158. linkcheck:
  159. $(SPHINXBUILD) -b linkcheck $(ALLSPHINXOPTS) $(BUILDDIR)/linkcheck
  160. @echo
  161. @echo "Link check complete; look for any errors in the above output " \
  162. "or in $(BUILDDIR)/linkcheck/output.txt."
  163. doctest:
  164. $(SPHINXBUILD) -b doctest $(ALLSPHINXOPTS) $(BUILDDIR)/doctest
  165. @echo "Testing of doctests in the sources finished, look at the " \
  166. "results in $(BUILDDIR)/doctest/output.txt."
  167. coverage:
  168. $(SPHINXBUILD) -b coverage $(ALLSPHINXOPTS) $(BUILDDIR)/coverage
  169. @echo "Testing of coverage in the sources finished, look at the " \
  170. "results in $(BUILDDIR)/coverage/python.txt."
  171. xml:
  172. $(SPHINXBUILD) -b xml $(ALLSPHINXOPTS) $(BUILDDIR)/xml
  173. @echo
  174. @echo "Build finished. The XML files are in $(BUILDDIR)/xml."
  175. pseudoxml:
  176. $(SPHINXBUILD) -b pseudoxml $(ALLSPHINXOPTS) $(BUILDDIR)/pseudoxml
  177. @echo
  178. @echo "Build finished. The pseudo-XML files are in $(BUILDDIR)/pseudoxml."