Makefile 7.9 KB

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