Makefile 6.1 KB

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