Makefile 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166
  1. # Makefile for Sphinx documentation
  2. #
  3. MODULE_TOPDIR=../../../..
  4. include $(MODULE_TOPDIR)/include/Make/Vars.make
  5. include $(MODULE_TOPDIR)/include/Make/Rules.make
  6. # You can set these variables from the command line.
  7. SPHINXOPTS =
  8. ifneq (@(type sphinx-build2 > /dev/null),)
  9. SPHINXBUILD = sphinx-build2
  10. endif
  11. ifneq (@(type sphinx-build > /dev/null),)
  12. SPHINXBUILD = sphinx-build
  13. endif
  14. PAPER =
  15. BUILDDIR = _build
  16. MYGISBASE = $(GISBASE)
  17. # Internal variables.
  18. PAPEROPT_a4 = -D latex_paper_size=a4
  19. PAPEROPT_letter = -D latex_paper_size=letter
  20. ALLSPHINXOPTS = -d $(BUILDDIR)/doctrees $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) .
  21. # the i18n builder cannot share the environment and doctrees with the others
  22. I18NSPHINXOPTS = $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) .
  23. .PHONY: help clean html dirhtml singlehtml pickle json htmlhelp qthelp devhelp epub latex latexpdf text man changes linkcheck doctest gettext
  24. .DEFAULT_GOAL := help
  25. help:
  26. @echo "Please use \`make <target>' where <target> is one of"
  27. @echo " html to make standalone HTML files"
  28. @echo " dirhtml to make HTML files named index.html in directories"
  29. @echo " singlehtml to make a single large HTML file"
  30. @echo " pickle to make pickle files"
  31. @echo " json to make JSON files"
  32. @echo " htmlhelp to make HTML files and a HTML help project"
  33. @echo " qthelp to make HTML files and a qthelp project"
  34. @echo " devhelp to make HTML files and a Devhelp project"
  35. @echo " epub to make an epub"
  36. @echo " latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter"
  37. @echo " latexpdf to make LaTeX files and run them through pdflatex"
  38. @echo " text to make text files"
  39. @echo " man to make manual pages"
  40. @echo " texinfo to make Texinfo files"
  41. @echo " info to make Texinfo files and run them through makeinfo"
  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. clean:
  47. -rm -rf $(BUILDDIR)/*
  48. html:
  49. $(call run_grass,$(SPHINXBUILD) -b html $(ALLSPHINXOPTS) $(BUILDDIR)/html)
  50. @echo
  51. @echo "Build finished. The HTML pages are in $(BUILDDIR)/html/"
  52. dirhtml:
  53. $(call run_grass,$(SPHINXBUILD) -b dirhtml $(ALLSPHINXOPTS) $(BUILDDIR)/dirhtml)
  54. @echo
  55. @echo "Build finished. The HTML pages are in $(BUILDDIR)/dirhtml/"
  56. singlehtml:
  57. $(call run_grass,$(SPHINXBUILD) -b singlehtml $(ALLSPHINXOPTS) $(BUILDDIR)/singlehtml)
  58. @echo
  59. @echo "Build finished. The HTML page is in $(BUILDDIR)/singlehtml/"
  60. pickle:
  61. $(call run_grass,$(SPHINXBUILD) -b pickle $(ALLSPHINXOPTS) $(BUILDDIR)/pickle)
  62. @echo
  63. @echo "Build finished; now you can process the pickle files in $(BUILDDIR)/pickle/."
  64. json:
  65. $(call run_grass,$(SPHINXBUILD) -b json $(ALLSPHINXOPTS) $(BUILDDIR)/json)
  66. @echo
  67. @echo "Build finished; now you can process the JSON files in $(BUILDDIR)/json/"
  68. htmlhelp:
  69. $(call run_grass,$(SPHINXBUILD) -b htmlhelp $(ALLSPHINXOPTS) $(BUILDDIR)/htmlhelp)
  70. @echo
  71. @echo "Build finished; now you can run HTML Help Workshop with the" \
  72. ".hhp project file in $(BUILDDIR)/htmlhelp/"
  73. qthelp:
  74. $(call run_grass,$(SPHINXBUILD) -b qthelp $(ALLSPHINXOPTS) $(BUILDDIR)/qthelp)
  75. @echo
  76. @echo "Build finished; now you can run "qcollectiongenerator" with the" \
  77. ".qhcp project file in $(BUILDDIR)/qthelp, like this:"
  78. @echo "# qcollectiongenerator $(BUILDDIR)/qthelp/PyGrass.qhcp"
  79. @echo "To view the help file:"
  80. @echo "# assistant -collectionFile $(BUILDDIR)/qthelp/PyGrass.qhc"
  81. devhelp:
  82. $(call run_grass,$(SPHINXBUILD) -b devhelp $(ALLSPHINXOPTS) $(BUILDDIR)/devhelp)
  83. @echo
  84. @echo "Build finished."
  85. @echo "To view the help file:"
  86. @echo "# mkdir -p $$HOME/.local/share/devhelp/PyGrass"
  87. @echo "# ln -s $(BUILDDIR)/devhelp $$HOME/.local/share/devhelp/PyGrass"
  88. @echo "# devhelp"
  89. epub:
  90. $(call run_grass,$(SPHINXBUILD) -b epub $(ALLSPHINXOPTS) $(BUILDDIR)/epub)
  91. @echo
  92. @echo "Build finished. The epub file is in $(BUILDDIR)/epub/"
  93. latex:
  94. $(call run_grass,$(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex)
  95. @echo
  96. @echo "Build finished; the LaTeX files are in $(BUILDDIR)/latex."
  97. @echo "Run \`make' in that directory to run these through (pdf)latex" \
  98. "(use \`make latexpdf' here to do that automatically)."
  99. latexpdf:
  100. $(call run_grass,$(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex)
  101. @echo "Running LaTeX files through pdflatex..."
  102. $(MAKE) -C $(BUILDDIR)/latex all-pdf
  103. @echo "pdflatex finished; the PDF files are in $(BUILDDIR)/latex/"
  104. text:
  105. $(call run_grass,$(SPHINXBUILD) -b text $(ALLSPHINXOPTS) $(BUILDDIR)/text)
  106. @echo
  107. @echo "Build finished. The text files are in $(BUILDDIR)/text/"
  108. man:
  109. $(call run_grass,$(SPHINXBUILD) -b man $(ALLSPHINXOPTS) $(BUILDDIR)/man)
  110. @echo
  111. @echo "Build finished. The manual pages are in $(BUILDDIR)/man/"
  112. texinfo:
  113. $(call run_grass,$(SPHINXBUILD) -b texinfo $(ALLSPHINXOPTS) $(BUILDDIR)/texinfo)
  114. @echo
  115. @echo "Build finished. The Texinfo files are in $(BUILDDIR)/texinfo."
  116. @echo "Run \`make' in that directory to run these through makeinfo" \
  117. "(use \`make info' here to do that automatically)."
  118. info:
  119. $(call run_grass,$(SPHINXBUILD) -b texinfo $(ALLSPHINXOPTS) $(BUILDDIR)/texinfo)
  120. @echo "Running Texinfo files through makeinfo..."
  121. make -C $(BUILDDIR)/texinfo info
  122. @echo "makeinfo finished; the Info files are in $(BUILDDIR)/texinfo/"
  123. gettext:
  124. $(call run_grass,$(SPHINXBUILD) -b gettext $(I18NSPHINXOPTS) $(BUILDDIR)/locale)
  125. @echo
  126. @echo "Build finished. The message catalogs are in $(BUILDDIR)/locale/"
  127. changes:
  128. $(call run_grass,$(SPHINXBUILD) -b changes $(ALLSPHINXOPTS) $(BUILDDIR)/changes)
  129. @echo
  130. @echo "The overview file is in $(BUILDDIR)/changes/"
  131. linkcheck:
  132. $(call run_grass,$(SPHINXBUILD) -b linkcheck $(ALLSPHINXOPTS) $(BUILDDIR)/linkcheck)
  133. @echo
  134. @echo "Link check complete; look for any errors in the above output " \
  135. "or in $(BUILDDIR)/linkcheck/output.txt."
  136. doctest:
  137. $(call run_grass,$(SPHINXBUILD) -b doctest $(ALLSPHINXOPTS) $(BUILDDIR)/doctest)
  138. @echo "Testing of doctests in the sources finished, look at the " \
  139. "results in $(BUILDDIR)/doctest/output.txt."