Makefile 7.8 KB

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