Makefile 7.8 KB

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