Makefile 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175
  1. # Makefile for Sphinx documentation
  2. #
  3. # You can set these variables from the command line.
  4. PYTHON ?= python
  5. SPHINXOPTS ?=
  6. SPHINXBUILD ?= sphinx-build
  7. PAPER ?=
  8. BUILDDIR ?= _build
  9. LANGUAGE ?=
  10. # Set the default language.
  11. ifndef LANGUAGE
  12. override LANGUAGE = en
  13. endif
  14. # Convert something like "en_US" to "en", because Sphinx does not recognize
  15. # underscores. Country codes should be passed using a dash, e.g. "pt-BR".
  16. LANGUAGEOPT = $(firstword $(subst _, ,$(LANGUAGE)))
  17. # Internal variables.
  18. PAPEROPT_a4 = -D latex_paper_size=a4
  19. PAPEROPT_letter = -D latex_paper_size=letter
  20. ALLSPHINXOPTS = -n -d $(BUILDDIR)/doctrees -D language=$(LANGUAGEOPT) $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) .
  21. # the i18n builder cannot share the environment and doctrees with the others
  22. I18NSPHINXOPTS = $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) .
  23. .PHONY: help clean html htmlview dirhtml singlehtml pickle json htmlhelp qthelp devhelp epub latex latexpdf text man changes linkcheck doctest gettext
  24. help:
  25. @echo "Please use \`make <target>' where <target> is one of"
  26. @echo " html to make standalone HTML files"
  27. @echo " htmlview to open the index page built by the html target in your browser"
  28. @echo " dirhtml to make HTML files named index.html in directories"
  29. @echo " singlehtml to make a single large HTML file"
  30. @echo " pickle to make pickle files"
  31. @echo " json to make JSON files"
  32. @echo " htmlhelp to make HTML files and a HTML help project"
  33. @echo " qthelp to make HTML files and a qthelp project"
  34. @echo " devhelp to make HTML files and a Devhelp project"
  35. @echo " epub to make an epub"
  36. @echo " latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter"
  37. @echo " latexpdf to make LaTeX files and run them through pdflatex"
  38. @echo " text to make text files"
  39. @echo " man to make manual pages"
  40. @echo " texinfo to make a Texinfo source file"
  41. @echo " gettext to make PO message catalogs"
  42. @echo " changes to make an overview of all changed/added/deprecated items"
  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 " spelling to check for typos in documentation"
  46. @echo " black to apply the black formatting to code blocks in documentation"
  47. clean:
  48. -rm -rf $(BUILDDIR)/*
  49. html:
  50. $(SPHINXBUILD) -b djangohtml $(ALLSPHINXOPTS) $(BUILDDIR)/html
  51. @echo
  52. @echo "Build finished. The HTML pages are in $(BUILDDIR)/html."
  53. htmlview: html
  54. $(PYTHON) -c "import webbrowser; webbrowser.open('_build/html/index.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/django.qhcp"
  82. @echo "To view the help file:"
  83. @echo "# assistant -collectionFile $(BUILDDIR)/qthelp/django.qhc"
  84. devhelp:
  85. $(SPHINXBUILD) -b devhelp $(ALLSPHINXOPTS) $(BUILDDIR)/devhelp
  86. @echo
  87. @echo "Build finished."
  88. @echo "To view the help file:"
  89. @echo "# mkdir -p $$HOME/.local/share/devhelp/django"
  90. @echo "# ln -s $(BUILDDIR)/devhelp $$HOME/.local/share/devhelp/django"
  91. @echo "# devhelp"
  92. epub:
  93. $(SPHINXBUILD) -b epub $(ALLSPHINXOPTS) $(BUILDDIR)/epub
  94. @echo
  95. @echo "Build finished. The epub file is in $(BUILDDIR)/epub."
  96. latex:
  97. $(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex
  98. @echo
  99. @echo "Build finished; the LaTeX files are in $(BUILDDIR)/latex."
  100. @echo "Run \`make' in that directory to run these through (pdf)latex" \
  101. "(use \`make latexpdf' here to do that automatically)."
  102. latexpdf:
  103. $(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex
  104. @echo "Running LaTeX files through pdflatex..."
  105. make -C $(BUILDDIR)/latex all-pdf
  106. @echo "pdflatex finished; the PDF files are in $(BUILDDIR)/latex."
  107. text:
  108. $(SPHINXBUILD) -b text $(ALLSPHINXOPTS) $(BUILDDIR)/text
  109. @echo
  110. @echo "Build finished. The text files are in $(BUILDDIR)/text."
  111. man:
  112. $(SPHINXBUILD) -b man $(ALLSPHINXOPTS) $(BUILDDIR)/man
  113. @echo
  114. @echo "Build finished. The manual pages are in $(BUILDDIR)/man."
  115. texinfo:
  116. $(SPHINXBUILD) -b texinfo $(ALLSPHINXOPTS) $(BUILDDIR)/texinfo
  117. @echo
  118. @echo "Build finished; the Texinfo files are in $(BUILDDIR)/texinfo."
  119. gettext:
  120. $(SPHINXBUILD) -b gettext $(I18NSPHINXOPTS) $(BUILDDIR)/locale
  121. @echo
  122. @echo "Build finished. The message catalogs are in $(BUILDDIR)/locale."
  123. changes:
  124. $(SPHINXBUILD) -b changes $(ALLSPHINXOPTS) $(BUILDDIR)/changes
  125. @echo
  126. @echo "The overview file is in $(BUILDDIR)/changes."
  127. linkcheck:
  128. $(SPHINXBUILD) -b linkcheck $(ALLSPHINXOPTS) $(BUILDDIR)/linkcheck
  129. @echo
  130. @echo "Link check complete; look for any errors in the above output " \
  131. "or in $(BUILDDIR)/linkcheck/output.txt."
  132. doctest:
  133. $(SPHINXBUILD) -b doctest $(ALLSPHINXOPTS) $(BUILDDIR)/doctest
  134. @echo "Testing of doctests in the sources finished, look at the " \
  135. "results in $(BUILDDIR)/doctest/output.txt."
  136. spelling:
  137. $(SPHINXBUILD) -b spelling $(ALLSPHINXOPTS) $(BUILDDIR)/spelling
  138. @echo
  139. @echo "Check finished. Wrong words can be found in " \
  140. "$(BUILDDIR)/spelling/output.txt."
  141. black:
  142. @mkdir -p $(BUILDDIR)/black
  143. find -name "*.txt" -not -path "./_build/*" -not -path "./_theme/*" \
  144. | xargs blacken-docs --rst-literal-block; echo $$? > "$(BUILDDIR)/black/output.txt"
  145. @echo
  146. @echo "Code blocks reformatted"