Makefile 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194
  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. AUTOGALLERYDIR= source/auto_examples source/tune/tutorials source/tune/generated_guides
  9. # User-friendly check for sphinx-build
  10. ifeq ($(shell which $(SPHINXBUILD) >/dev/null 2>&1; echo $$?), 1)
  11. $(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 http://sphinx-doc.org/)
  12. endif
  13. # Internal variables.
  14. PAPEROPT_a4 = -D latex_paper_size=a4
  15. PAPEROPT_letter = -D latex_paper_size=letter
  16. ALLSPHINXOPTS = -d $(BUILDDIR)/doctrees $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) source
  17. # the i18n builder cannot share the environment and doctrees with the others
  18. I18NSPHINXOPTS = $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) source
  19. .PHONY: help clean html dirhtml singlehtml pickle json htmlhelp qthelp devhelp epub latex latexpdf text man changes linkcheck doctest coverage gettext
  20. help:
  21. @echo "Please use \`make <target>' where <target> is one of"
  22. @echo " html to make standalone HTML files"
  23. @echo " dirhtml to make HTML files named index.html in directories"
  24. @echo " singlehtml to make a single large HTML file"
  25. @echo " pickle to make pickle files"
  26. @echo " json to make JSON files"
  27. @echo " htmlhelp to make HTML files and a HTML help project"
  28. @echo " qthelp to make HTML files and a qthelp project"
  29. @echo " applehelp to make an Apple Help Book"
  30. @echo " devhelp to make HTML files and a Devhelp project"
  31. @echo " epub to make an epub"
  32. @echo " latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter"
  33. @echo " latexpdf to make LaTeX files and run them through pdflatex"
  34. @echo " latexpdfja to make LaTeX files and run them through platex/dvipdfmx"
  35. @echo " text to make text files"
  36. @echo " man to make manual pages"
  37. @echo " texinfo to make Texinfo files"
  38. @echo " info to make Texinfo files and run them through makeinfo"
  39. @echo " gettext to make PO message catalogs"
  40. @echo " changes to make an overview of all changed/added/deprecated items"
  41. @echo " xml to make Docutils-native XML files"
  42. @echo " pseudoxml to make pseudoxml-XML files for display purposes"
  43. @echo " linkcheck to check all external links for integrity"
  44. @echo " doctest to run all doctests embedded in the documentation (if enabled)"
  45. @echo " coverage to run coverage check of the documentation (if enabled)"
  46. clean:
  47. rm -rf $(BUILDDIR)/* $(AUTOGALLERYDIR)
  48. rm -rf site/_site site/Gemfile.lock site/.sass-cache
  49. html:
  50. $(SPHINXBUILD) -W -b html $(ALLSPHINXOPTS) $(BUILDDIR)/html
  51. @echo
  52. @echo "Build finished. The HTML pages are in $(BUILDDIR)/html."
  53. dirhtml:
  54. $(SPHINXBUILD) -b dirhtml $(ALLSPHINXOPTS) $(BUILDDIR)/dirhtml
  55. @echo
  56. @echo "Build finished. The HTML pages are in $(BUILDDIR)/dirhtml."
  57. singlehtml:
  58. $(SPHINXBUILD) -b singlehtml $(ALLSPHINXOPTS) $(BUILDDIR)/singlehtml
  59. @echo
  60. @echo "Build finished. The HTML page is in $(BUILDDIR)/singlehtml."
  61. pickle:
  62. $(SPHINXBUILD) -b pickle $(ALLSPHINXOPTS) $(BUILDDIR)/pickle
  63. @echo
  64. @echo "Build finished; now you can process the pickle files."
  65. json:
  66. $(SPHINXBUILD) -b json $(ALLSPHINXOPTS) $(BUILDDIR)/json
  67. @echo
  68. @echo "Build finished; now you can process the JSON files."
  69. htmlhelp:
  70. $(SPHINXBUILD) -b htmlhelp $(ALLSPHINXOPTS) $(BUILDDIR)/htmlhelp
  71. @echo
  72. @echo "Build finished; now you can run HTML Help Workshop with the" \
  73. ".hhp project file in $(BUILDDIR)/htmlhelp."
  74. qthelp:
  75. $(SPHINXBUILD) -b qthelp $(ALLSPHINXOPTS) $(BUILDDIR)/qthelp
  76. @echo
  77. @echo "Build finished; now you can run "qcollectiongenerator" with the" \
  78. ".qhcp project file in $(BUILDDIR)/qthelp, like this:"
  79. @echo "# qcollectiongenerator $(BUILDDIR)/qthelp/Ray.qhcp"
  80. @echo "To view the help file:"
  81. @echo "# assistant -collectionFile $(BUILDDIR)/qthelp/Ray.qhc"
  82. applehelp:
  83. $(SPHINXBUILD) -b applehelp $(ALLSPHINXOPTS) $(BUILDDIR)/applehelp
  84. @echo
  85. @echo "Build finished. The help book is in $(BUILDDIR)/applehelp."
  86. @echo "N.B. You won't be able to view it unless you put it in" \
  87. "~/Library/Documentation/Help or install it in your application" \
  88. "bundle."
  89. devhelp:
  90. $(SPHINXBUILD) -b devhelp $(ALLSPHINXOPTS) $(BUILDDIR)/devhelp
  91. @echo
  92. @echo "Build finished."
  93. @echo "To view the help file:"
  94. @echo "# mkdir -p $$HOME/.local/share/devhelp/Ray"
  95. @echo "# ln -s $(BUILDDIR)/devhelp $$HOME/.local/share/devhelp/Ray"
  96. @echo "# devhelp"
  97. epub:
  98. $(SPHINXBUILD) -b epub $(ALLSPHINXOPTS) $(BUILDDIR)/epub
  99. @echo
  100. @echo "Build finished. The epub file is in $(BUILDDIR)/epub."
  101. latex:
  102. $(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex
  103. @echo
  104. @echo "Build finished; the LaTeX files are in $(BUILDDIR)/latex."
  105. @echo "Run \`make' in that directory to run these through (pdf)latex" \
  106. "(use \`make latexpdf' here to do that automatically)."
  107. latexpdf:
  108. $(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex
  109. @echo "Running LaTeX files through pdflatex..."
  110. $(MAKE) -C $(BUILDDIR)/latex all-pdf
  111. @echo "pdflatex finished; the PDF files are in $(BUILDDIR)/latex."
  112. latexpdfja:
  113. $(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex
  114. @echo "Running LaTeX files through platex and dvipdfmx..."
  115. $(MAKE) -C $(BUILDDIR)/latex all-pdf-ja
  116. @echo "pdflatex finished; the PDF files are in $(BUILDDIR)/latex."
  117. text:
  118. $(SPHINXBUILD) -b text $(ALLSPHINXOPTS) $(BUILDDIR)/text
  119. @echo
  120. @echo "Build finished. The text files are in $(BUILDDIR)/text."
  121. man:
  122. $(SPHINXBUILD) -b man $(ALLSPHINXOPTS) $(BUILDDIR)/man
  123. @echo
  124. @echo "Build finished. The manual pages are in $(BUILDDIR)/man."
  125. texinfo:
  126. $(SPHINXBUILD) -b texinfo $(ALLSPHINXOPTS) $(BUILDDIR)/texinfo
  127. @echo
  128. @echo "Build finished. The Texinfo files are in $(BUILDDIR)/texinfo."
  129. @echo "Run \`make' in that directory to run these through makeinfo" \
  130. "(use \`make info' here to do that automatically)."
  131. info:
  132. $(SPHINXBUILD) -b texinfo $(ALLSPHINXOPTS) $(BUILDDIR)/texinfo
  133. @echo "Running Texinfo files through makeinfo..."
  134. make -C $(BUILDDIR)/texinfo info
  135. @echo "makeinfo finished; the Info files are in $(BUILDDIR)/texinfo."
  136. gettext:
  137. $(SPHINXBUILD) -b gettext $(I18NSPHINXOPTS) $(BUILDDIR)/locale
  138. @echo
  139. @echo "Build finished. The message catalogs are in $(BUILDDIR)/locale."
  140. changes:
  141. $(SPHINXBUILD) -b changes $(ALLSPHINXOPTS) $(BUILDDIR)/changes
  142. @echo
  143. @echo "The overview file is in $(BUILDDIR)/changes."
  144. linkcheck:
  145. $(SPHINXBUILD) -b linkcheck $(ALLSPHINXOPTS) $(BUILDDIR)/linkcheck
  146. @echo
  147. @echo "Link check complete; look for any errors in the above output " \
  148. "or in $(BUILDDIR)/linkcheck/output.txt."
  149. doctest:
  150. $(SPHINXBUILD) -b doctest $(ALLSPHINXOPTS) $(BUILDDIR)/doctest
  151. @echo "Testing of doctests in the sources finished, look at the " \
  152. "results in $(BUILDDIR)/doctest/output.txt."
  153. coverage:
  154. $(SPHINXBUILD) -b coverage $(ALLSPHINXOPTS) $(BUILDDIR)/coverage
  155. @echo "Testing of coverage in the sources finished, look at the " \
  156. "results in $(BUILDDIR)/coverage/python.txt."
  157. xml:
  158. $(SPHINXBUILD) -b xml $(ALLSPHINXOPTS) $(BUILDDIR)/xml
  159. @echo
  160. @echo "Build finished. The XML files are in $(BUILDDIR)/xml."
  161. pseudoxml:
  162. $(SPHINXBUILD) -b pseudoxml $(ALLSPHINXOPTS) $(BUILDDIR)/pseudoxml
  163. @echo
  164. @echo "Build finished. The pseudo-XML files are in $(BUILDDIR)/pseudoxml."