Generate a Python package project using the Python Cookiecutter package
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178
  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. SOURCEDIR = source
  8. BUILDDIR = build
  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 environment 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. # Internal variables.
  14. PAPEROPT_a4 = -D latex_paper_size=a4
  15. PAPEROPT_letter = -D latex_paper_size=letter
  16. ALLSPHINXOPTS = -d $(BUILDDIR)/doctrees $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) .
  17. # the i18n builder cannot share the environment and doctrees with the others
  18. I18NSPHINXOPTS = $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) .
  19. .PHONY: help clean html dirhtml singlehtml pickle json htmlhelp qthelp devhelp epub latex latexpdf text man changes linkcheck doctest gettext
  20. help:
  21. @echo "Please use \`make <target>' where <target> is one of"
  22. @echo " html to make standalone HTML files"
  23. @echo " dirhtml to make HTML files named index.html in directories"
  24. @echo " singlehtml to make a single large HTML file"
  25. @echo " pickle to make pickle files"
  26. @echo " json to make JSON files"
  27. @echo " htmlhelp to make HTML files and a HTML help project"
  28. @echo " qthelp to make HTML files and a qthelp project"
  29. @echo " devhelp to make HTML files and a Devhelp project"
  30. @echo " epub to make an epub"
  31. @echo " latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter"
  32. @echo " latexpdf to make LaTeX files and run them through pdflatex"
  33. @echo " latexpdfja to make LaTeX files and run them through platex/dvipdfmx"
  34. @echo " text to make text files"
  35. @echo " man to make manual pages"
  36. @echo " texinfo to make Texinfo files"
  37. @echo " info to make Texinfo files and run them through makeinfo"
  38. @echo " gettext to make PO message catalogs"
  39. @echo " changes to make an overview of all changed/added/deprecated items"
  40. @echo " xml to make Docutils-native XML files"
  41. @echo " pseudoxml to make pseudoxml-XML files for display purposes"
  42. @echo " linkcheck to check all external links for integrity"
  43. @echo " doctest to run all doctests embedded in the documentation (if enabled)"
  44. clean:
  45. rm -rf $(BUILDDIR)/*
  46. html:
  47. $(SPHINXBUILD) -b html $(ALLSPHINXOPTS) $(SOURCEDIR) $(BUILDDIR)/html
  48. @echo
  49. @echo "Build finished. The HTML pages are in $(BUILDDIR)/html."
  50. dirhtml:
  51. $(SPHINXBUILD) -b dirhtml $(ALLSPHINXOPTS) $(SOURCEDIR) $(BUILDDIR)/dirhtml
  52. @echo
  53. @echo "Build finished. The HTML pages are in $(BUILDDIR)/dirhtml."
  54. singlehtml:
  55. $(SPHINXBUILD) -b singlehtml $(ALLSPHINXOPTS) $(SOURCEDIR) $(BUILDDIR)/singlehtml
  56. @echo
  57. @echo "Build finished. The HTML page is in $(BUILDDIR)/singlehtml."
  58. pickle:
  59. $(SPHINXBUILD) -b pickle $(ALLSPHINXOPTS) $(SOURCEDIR) $(BUILDDIR)/pickle
  60. @echo
  61. @echo "Build finished; now you can process the pickle files."
  62. json:
  63. $(SPHINXBUILD) -b json $(ALLSPHINXOPTS) $(SOURCEDIR) $(BUILDDIR)/json
  64. @echo
  65. @echo "Build finished; now you can process the JSON files."
  66. htmlhelp:
  67. $(SPHINXBUILD) -b htmlhelp $(ALLSPHINXOPTS) $(SOURCEDIR) $(BUILDDIR)/htmlhelp
  68. @echo
  69. @echo "Build finished; now you can run HTML Help Workshop with the" \
  70. ".hhp project file in $(BUILDDIR)/htmlhelp."
  71. qthelp:
  72. $(SPHINXBUILD) -b qthelp $(ALLSPHINXOPTS) $(SOURCEDIR) $(BUILDDIR)/qthelp
  73. @echo
  74. @echo "Build finished; now you can run "qcollectiongenerator" with the" \
  75. ".qhcp project file in $(BUILDDIR)/qthelp, like this:"
  76. @echo "# qcollectiongenerator $(BUILDDIR)/qthelp/{{ cookiecutter.project_slug }}.qhcp"
  77. @echo "To view the help file:"
  78. @echo "# assistant -collectionFile $(BUILDDIR)/qthelp/{{ cookiecutter.project_slug }}.qhc"
  79. devhelp:
  80. $(SPHINXBUILD) -b devhelp $(ALLSPHINXOPTS) $(SOURCEDIR) $(BUILDDIR)/devhelp
  81. @echo
  82. @echo "Build finished."
  83. @echo "To view the help file:"
  84. @echo "# mkdir -p $$HOME/.local/share/devhelp/{{ cookiecutter.project_slug }}"
  85. @echo "# ln -s $(BUILDDIR)/devhelp $$HOME/.local/share/devhelp/{{ cookiecutter.project_slug }}"
  86. @echo "# devhelp"
  87. epub:
  88. $(SPHINXBUILD) -b epub $(ALLSPHINXOPTS) $(SOURCEDIR) $(BUILDDIR)/epub
  89. @echo
  90. @echo "Build finished. The epub file is in $(BUILDDIR)/epub."
  91. latex:
  92. $(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(SOURCEDIR) $(BUILDDIR)/latex
  93. @echo
  94. @echo "Build finished; the LaTeX files are in $(BUILDDIR)/latex."
  95. @echo "Run \`make' in that directory to run these through (pdf)latex" \
  96. "(use \`make latexpdf' here to do that automatically)."
  97. latexpdf:
  98. $(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(SOURCEDIR) $(BUILDDIR)/latex
  99. @echo "Running LaTeX files through pdflatex..."
  100. $(MAKE) -C $(BUILDDIR)/latex all-pdf
  101. @echo "pdflatex finished; the PDF files are in $(BUILDDIR)/latex."
  102. latexpdfja:
  103. $(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(SOURCEDIR) $(BUILDDIR)/latex
  104. @echo "Running LaTeX files through platex and dvipdfmx..."
  105. $(MAKE) -C $(BUILDDIR)/latex all-pdf-ja
  106. @echo "pdflatex finished; the PDF files are in $(BUILDDIR)/latex."
  107. text:
  108. $(SPHINXBUILD) -b text $(ALLSPHINXOPTS) $(SOURCEDIR) $(BUILDDIR)/text
  109. @echo
  110. @echo "Build finished. The text files are in $(BUILDDIR)/text."
  111. man:
  112. $(SPHINXBUILD) -b man $(ALLSPHINXOPTS) $(SOURCEDIR) $(BUILDDIR)/man
  113. @echo
  114. @echo "Build finished. The manual pages are in $(BUILDDIR)/man."
  115. texinfo:
  116. $(SPHINXBUILD) -b texinfo $(ALLSPHINXOPTS) $(SOURCEDIR) $(BUILDDIR)/texinfo
  117. @echo
  118. @echo "Build finished. The Texinfo files are in $(BUILDDIR)/texinfo."
  119. @echo "Run \`make' in that directory to run these through makeinfo" \
  120. "(use \`make info' here to do that automatically)."
  121. info:
  122. $(SPHINXBUILD) -b texinfo $(ALLSPHINXOPTS) $(SOURCEDIR) $(BUILDDIR)/texinfo
  123. @echo "Running Texinfo files through makeinfo..."
  124. make -C $(BUILDDIR)/texinfo info
  125. @echo "makeinfo finished; the Info files are in $(BUILDDIR)/texinfo."
  126. gettext:
  127. $(SPHINXBUILD) -b gettext $(I18NSPHINXOPTS) $(BUILDDIR)/locale
  128. @echo
  129. @echo "Build finished. The message catalogs are in $(BUILDDIR)/locale."
  130. changes:
  131. $(SPHINXBUILD) -b changes $(ALLSPHINXOPTS) $(SOURCEDIR) $(BUILDDIR)/changes
  132. @echo
  133. @echo "The overview file is in $(BUILDDIR)/changes."
  134. linkcheck:
  135. $(SPHINXBUILD) -b linkcheck $(ALLSPHINXOPTS) $(SOURCEDIR) $(BUILDDIR)/linkcheck
  136. @echo
  137. @echo "Link check complete; look for any errors in the above output " \
  138. "or in $(BUILDDIR)/linkcheck/output.txt."
  139. doctest:
  140. $(SPHINXBUILD) -b doctest $(ALLSPHINXOPTS) $(SOURCEDIR) $(BUILDDIR)/doctest
  141. @echo "Testing of doctests in the sources finished, look at the " \
  142. "results in $(BUILDDIR)/doctest/output.txt."
  143. xml:
  144. $(SPHINXBUILD) -b xml $(ALLSPHINXOPTS) $(SOURCEDIR) $(BUILDDIR)/xml
  145. @echo
  146. @echo "Build finished. The XML files are in $(BUILDDIR)/xml."
  147. pseudoxml:
  148. $(SPHINXBUILD) -b pseudoxml $(ALLSPHINXOPTS) $(SOURCEDIR) $(BUILDDIR)/pseudoxml
  149. @echo
  150. @echo "Build finished. The pseudo-XML files are in $(BUILDDIR)/pseudoxml."