Makefile 6.1 KB

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