Makefile.sphinx 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163
  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. # Internal variables.
  9. PAPEROPT_a4 = -D latex_paper_size=a4
  10. PAPEROPT_letter = -D latex_paper_size=letter
  11. ALLSPHINXOPTS = -d $(BUILDDIR)/doctrees $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) .
  12. # the i18n builder cannot share the environment and doctrees with the others
  13. I18NSPHINXOPTS = $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) .
  14. .PHONY: help clean html dirhtml singlehtml pickle json htmlhelp qthelp devhelp epub latex latexpdf text man changes linkcheck doctest gettext default
  15. default: html
  16. help:
  17. @echo "Please use \`make <target>' where <target> is one of"
  18. @echo " html to make standalone HTML files"
  19. @echo " dirhtml to make HTML files named index.html in directories"
  20. @echo " singlehtml to make a single large HTML file"
  21. @echo " pickle to make pickle files"
  22. @echo " json to make JSON files"
  23. @echo " htmlhelp to make HTML files and a HTML help project"
  24. @echo " qthelp to make HTML files and a qthelp project"
  25. @echo " devhelp to make HTML files and a Devhelp project"
  26. @echo " epub to make an epub"
  27. @echo " latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter"
  28. @echo " latexpdf to make LaTeX files and run them through pdflatex"
  29. @echo " text to make text files"
  30. @echo " man to make manual pages"
  31. @echo " texinfo to make Texinfo files"
  32. @echo " info to make Texinfo files and run them through makeinfo"
  33. @echo " gettext to make PO message catalogs"
  34. @echo " changes to make an overview of all changed/added/deprecated items"
  35. @echo " linkcheck to check all external links for integrity"
  36. @echo " doctest to run all doctests embedded in the documentation (if enabled)"
  37. clean:
  38. -rm -rf $(BUILDDIR)/*
  39. html:
  40. $(SPHINXBUILD) -b html $(ALLSPHINXOPTS) $(BUILDDIR)/html
  41. @echo
  42. @# FIXME: Remove this `cp` once HTML->Sphinx transition is completed.
  43. @# Kind of a hack, but HTML-formatted docs are on the way out anyway.
  44. @echo "Copying legacy HTML-formatted docs into $(BUILDDIR)/html"
  45. @cp -a *.html $(BUILDDIR)/html
  46. @# FIXME: What we really need is a way to specify redirects, so that
  47. @# we can just redirect to a reST'ified version of this document.
  48. @# PR14714 is tracking the issue of redirects.
  49. @cp -a Block-ABI-Apple.txt $(BUILDDIR)/html
  50. @echo "Build finished. The HTML pages are in $(BUILDDIR)/html."
  51. dirhtml:
  52. $(SPHINXBUILD) -b dirhtml $(ALLSPHINXOPTS) $(BUILDDIR)/dirhtml
  53. @echo
  54. @echo "Build finished. The HTML pages are in $(BUILDDIR)/dirhtml."
  55. singlehtml:
  56. $(SPHINXBUILD) -b singlehtml $(ALLSPHINXOPTS) $(BUILDDIR)/singlehtml
  57. @echo
  58. @echo "Build finished. The HTML page is in $(BUILDDIR)/singlehtml."
  59. pickle:
  60. $(SPHINXBUILD) -b pickle $(ALLSPHINXOPTS) $(BUILDDIR)/pickle
  61. @echo
  62. @echo "Build finished; now you can process the pickle files."
  63. json:
  64. $(SPHINXBUILD) -b json $(ALLSPHINXOPTS) $(BUILDDIR)/json
  65. @echo
  66. @echo "Build finished; now you can process the JSON files."
  67. htmlhelp:
  68. $(SPHINXBUILD) -b htmlhelp $(ALLSPHINXOPTS) $(BUILDDIR)/htmlhelp
  69. @echo
  70. @echo "Build finished; now you can run HTML Help Workshop with the" \
  71. ".hhp project file in $(BUILDDIR)/htmlhelp."
  72. qthelp:
  73. $(SPHINXBUILD) -b qthelp $(ALLSPHINXOPTS) $(BUILDDIR)/qthelp
  74. @echo
  75. @echo "Build finished; now you can run "qcollectiongenerator" with the" \
  76. ".qhcp project file in $(BUILDDIR)/qthelp, like this:"
  77. @echo "# qcollectiongenerator $(BUILDDIR)/qthelp/Clang.qhcp"
  78. @echo "To view the help file:"
  79. @echo "# assistant -collectionFile $(BUILDDIR)/qthelp/Clang.qhc"
  80. devhelp:
  81. $(SPHINXBUILD) -b devhelp $(ALLSPHINXOPTS) $(BUILDDIR)/devhelp
  82. @echo
  83. @echo "Build finished."
  84. @echo "To view the help file:"
  85. @echo "# mkdir -p $$HOME/.local/share/devhelp/Clang"
  86. @echo "# ln -s $(BUILDDIR)/devhelp $$HOME/.local/share/devhelp/Clang"
  87. @echo "# devhelp"
  88. epub:
  89. $(SPHINXBUILD) -b epub $(ALLSPHINXOPTS) $(BUILDDIR)/epub
  90. @echo
  91. @echo "Build finished. The epub file is in $(BUILDDIR)/epub."
  92. latex:
  93. $(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex
  94. @echo
  95. @echo "Build finished; the LaTeX files are in $(BUILDDIR)/latex."
  96. @echo "Run \`make' in that directory to run these through (pdf)latex" \
  97. "(use \`make latexpdf' here to do that automatically)."
  98. latexpdf:
  99. $(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex
  100. @echo "Running LaTeX files through pdflatex..."
  101. $(MAKE) -C $(BUILDDIR)/latex all-pdf
  102. @echo "pdflatex finished; the PDF files are in $(BUILDDIR)/latex."
  103. text:
  104. $(SPHINXBUILD) -b text $(ALLSPHINXOPTS) $(BUILDDIR)/text
  105. @echo
  106. @echo "Build finished. The text files are in $(BUILDDIR)/text."
  107. man:
  108. $(SPHINXBUILD) -b man $(ALLSPHINXOPTS) $(BUILDDIR)/man
  109. @echo
  110. @echo "Build finished. The manual pages are in $(BUILDDIR)/man."
  111. texinfo:
  112. $(SPHINXBUILD) -b texinfo $(ALLSPHINXOPTS) $(BUILDDIR)/texinfo
  113. @echo
  114. @echo "Build finished. The Texinfo files are in $(BUILDDIR)/texinfo."
  115. @echo "Run \`make' in that directory to run these through makeinfo" \
  116. "(use \`make info' here to do that automatically)."
  117. info:
  118. $(SPHINXBUILD) -b texinfo $(ALLSPHINXOPTS) $(BUILDDIR)/texinfo
  119. @echo "Running Texinfo files through makeinfo..."
  120. make -C $(BUILDDIR)/texinfo info
  121. @echo "makeinfo finished; the Info files are in $(BUILDDIR)/texinfo."
  122. gettext:
  123. $(SPHINXBUILD) -b gettext $(I18NSPHINXOPTS) $(BUILDDIR)/locale
  124. @echo
  125. @echo "Build finished. The message catalogs are in $(BUILDDIR)/locale."
  126. changes:
  127. $(SPHINXBUILD) -b changes $(ALLSPHINXOPTS) $(BUILDDIR)/changes
  128. @echo
  129. @echo "The overview file is in $(BUILDDIR)/changes."
  130. linkcheck:
  131. $(SPHINXBUILD) -b linkcheck $(ALLSPHINXOPTS) $(BUILDDIR)/linkcheck
  132. @echo
  133. @echo "Link check complete; look for any errors in the above output " \
  134. "or in $(BUILDDIR)/linkcheck/output.txt."
  135. doctest:
  136. $(SPHINXBUILD) -b doctest $(ALLSPHINXOPTS) $(BUILDDIR)/doctest
  137. @echo "Testing of doctests in the sources finished, look at the " \
  138. "results in $(BUILDDIR)/doctest/output.txt."