Makefile 7.8 KB

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