Makefile 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193
  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/sphinx/
  8. AUTODOCDIR = api
  9. AUTODOCBUILD = sphinx-apidoc
  10. PROJECT = hanna_rechnet
  11. MODULEDIR = ../src/hanna_rechnet
  12. # User-friendly check for sphinx-build
  13. ifeq ($(shell which $(SPHINXBUILD) >/dev/null 2>&1; echo $?), 1)
  14. $(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/)
  15. endif
  16. # Internal variables.
  17. PAPEROPT_a4 = -D latex_paper_size=a4
  18. PAPEROPT_letter = -D latex_paper_size=letter
  19. ALLSPHINXOPTS = -d $(BUILDDIR)/doctrees $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) .
  20. # the i18n builder cannot share the environment and doctrees with the others
  21. I18NSPHINXOPTS = $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) .
  22. .PHONY: help clean html dirhtml singlehtml pickle json htmlhelp qthelp devhelp epub latex latexpdf text man changes linkcheck doctest gettext doc-requirements
  23. help:
  24. @echo "Please use \`make <target>' where <target> is one of"
  25. @echo " html to make standalone HTML files"
  26. @echo " dirhtml to make HTML files named index.html in directories"
  27. @echo " singlehtml to make a single large HTML file"
  28. @echo " pickle to make pickle files"
  29. @echo " json to make JSON files"
  30. @echo " htmlhelp to make HTML files and a HTML help project"
  31. @echo " qthelp to make HTML files and a qthelp project"
  32. @echo " devhelp to make HTML files and a Devhelp project"
  33. @echo " epub to make an epub"
  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. clean:
  48. rm -rf $(BUILDDIR)/* $(AUTODOCDIR)
  49. $(AUTODOCDIR): $(MODULEDIR)
  50. mkdir -p $@
  51. $(AUTODOCBUILD) -f -o $@ $^
  52. doc-requirements: $(AUTODOCDIR)
  53. html: doc-requirements
  54. $(SPHINXBUILD) -b html $(ALLSPHINXOPTS) $(BUILDDIR)/html
  55. @echo
  56. @echo "Build finished. The HTML pages are in $(BUILDDIR)/html."
  57. dirhtml: doc-requirements
  58. $(SPHINXBUILD) -b dirhtml $(ALLSPHINXOPTS) $(BUILDDIR)/dirhtml
  59. @echo
  60. @echo "Build finished. The HTML pages are in $(BUILDDIR)/dirhtml."
  61. singlehtml: doc-requirements
  62. $(SPHINXBUILD) -b singlehtml $(ALLSPHINXOPTS) $(BUILDDIR)/singlehtml
  63. @echo
  64. @echo "Build finished. The HTML page is in $(BUILDDIR)/singlehtml."
  65. pickle: doc-requirements
  66. $(SPHINXBUILD) -b pickle $(ALLSPHINXOPTS) $(BUILDDIR)/pickle
  67. @echo
  68. @echo "Build finished; now you can process the pickle files."
  69. json: doc-requirements
  70. $(SPHINXBUILD) -b json $(ALLSPHINXOPTS) $(BUILDDIR)/json
  71. @echo
  72. @echo "Build finished; now you can process the JSON files."
  73. htmlhelp: doc-requirements
  74. $(SPHINXBUILD) -b htmlhelp $(ALLSPHINXOPTS) $(BUILDDIR)/htmlhelp
  75. @echo
  76. @echo "Build finished; now you can run HTML Help Workshop with the" \
  77. ".hhp project file in $(BUILDDIR)/htmlhelp."
  78. qthelp: doc-requirements
  79. $(SPHINXBUILD) -b qthelp $(ALLSPHINXOPTS) $(BUILDDIR)/qthelp
  80. @echo
  81. @echo "Build finished; now you can run "qcollectiongenerator" with the" \
  82. ".qhcp project file in $(BUILDDIR)/qthelp, like this:"
  83. @echo "# qcollectiongenerator $(BUILDDIR)/qthelp/$(PROJECT).qhcp"
  84. @echo "To view the help file:"
  85. @echo "# assistant -collectionFile $(BUILDDIR)/qthelp/$(PROJECT).qhc"
  86. devhelp: doc-requirements
  87. $(SPHINXBUILD) -b devhelp $(ALLSPHINXOPTS) $(BUILDDIR)/devhelp
  88. @echo
  89. @echo "Build finished."
  90. @echo "To view the help file:"
  91. @echo "# mkdir -p $HOME/.local/share/devhelp/$(PROJECT)"
  92. @echo "# ln -s $(BUILDDIR)/devhelp $HOME/.local/share/devhelp/$(PROJEC)"
  93. @echo "# devhelp"
  94. epub: doc-requirements
  95. $(SPHINXBUILD) -b epub $(ALLSPHINXOPTS) $(BUILDDIR)/epub
  96. @echo
  97. @echo "Build finished. The epub file is in $(BUILDDIR)/epub."
  98. patch-latex:
  99. find _build/latex -iname "*.tex" | xargs -- \
  100. sed -i'' 's~includegraphics{~includegraphics\[keepaspectratio,max size={\\textwidth}{\\textheight}\]{~g'
  101. latex: doc-requirements
  102. $(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex
  103. $(MAKE) patch-latex
  104. @echo
  105. @echo "Build finished; the LaTeX files are in $(BUILDDIR)/latex."
  106. @echo "Run \`make' in that directory to run these through (pdf)latex" \
  107. "(use \`make latexpdf' here to do that automatically)."
  108. latexpdf: doc-requirements
  109. $(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex
  110. $(MAKE) patch-latex
  111. @echo "Running LaTeX files through pdflatex..."
  112. $(MAKE) -C $(BUILDDIR)/latex all-pdf
  113. @echo "pdflatex finished; the PDF files are in $(BUILDDIR)/latex."
  114. latexpdfja: doc-requirements
  115. $(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex
  116. @echo "Running LaTeX files through platex and dvipdfmx..."
  117. $(MAKE) -C $(BUILDDIR)/latex all-pdf-ja
  118. @echo "pdflatex finished; the PDF files are in $(BUILDDIR)/latex."
  119. text: doc-requirements
  120. $(SPHINXBUILD) -b text $(ALLSPHINXOPTS) $(BUILDDIR)/text
  121. @echo
  122. @echo "Build finished. The text files are in $(BUILDDIR)/text."
  123. man: doc-requirements
  124. $(SPHINXBUILD) -b man $(ALLSPHINXOPTS) $(BUILDDIR)/man
  125. @echo
  126. @echo "Build finished. The manual pages are in $(BUILDDIR)/man."
  127. texinfo: doc-requirements
  128. $(SPHINXBUILD) -b texinfo $(ALLSPHINXOPTS) $(BUILDDIR)/texinfo
  129. @echo
  130. @echo "Build finished. The Texinfo files are in $(BUILDDIR)/texinfo."
  131. @echo "Run \`make' in that directory to run these through makeinfo" \
  132. "(use \`make info' here to do that automatically)."
  133. info: doc-requirements
  134. $(SPHINXBUILD) -b texinfo $(ALLSPHINXOPTS) $(BUILDDIR)/texinfo
  135. @echo "Running Texinfo files through makeinfo..."
  136. make -C $(BUILDDIR)/texinfo info
  137. @echo "makeinfo finished; the Info files are in $(BUILDDIR)/texinfo."
  138. gettext: doc-requirements
  139. $(SPHINXBUILD) -b gettext $(I18NSPHINXOPTS) $(BUILDDIR)/locale
  140. @echo
  141. @echo "Build finished. The message catalogs are in $(BUILDDIR)/locale."
  142. changes: doc-requirements
  143. $(SPHINXBUILD) -b changes $(ALLSPHINXOPTS) $(BUILDDIR)/changes
  144. @echo
  145. @echo "The overview file is in $(BUILDDIR)/changes."
  146. linkcheck: doc-requirements
  147. $(SPHINXBUILD) -b linkcheck $(ALLSPHINXOPTS) $(BUILDDIR)/linkcheck
  148. @echo
  149. @echo "Link check complete; look for any errors in the above output " \
  150. "or in $(BUILDDIR)/linkcheck/output.txt."
  151. doctest: doc-requirements
  152. $(SPHINXBUILD) -b doctest $(ALLSPHINXOPTS) $(BUILDDIR)/doctest
  153. @echo "Testing of doctests in the sources finished, look at the " \
  154. "results in $(BUILDDIR)/doctest/output.txt."
  155. xml: doc-requirements
  156. $(SPHINXBUILD) -b xml $(ALLSPHINXOPTS) $(BUILDDIR)/xml
  157. @echo
  158. @echo "Build finished. The XML files are in $(BUILDDIR)/xml."
  159. pseudoxml: doc-requirements
  160. $(SPHINXBUILD) -b pseudoxml $(ALLSPHINXOPTS) $(BUILDDIR)/pseudoxml
  161. @echo
  162. @echo "Build finished. The pseudo-XML files are in $(BUILDDIR)/pseudoxml."