Makefile 5.7 KB

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