Makefile 7.6 KB

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