Makefile 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185
  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. PYTHON = python
  9. # Internal variables.
  10. PAPEROPT_a4 = -D latex_paper_size=a4
  11. PAPEROPT_letter = -D latex_paper_size=letter
  12. ALLSPHINXOPTS = -d $(BUILDDIR)/doctrees $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) sources
  13. # the i18n builder cannot share the environment and doctrees with the others
  14. I18NSPHINXOPTS = $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) .
  15. .PHONY: help clean html dirhtml singlehtml pickle json htmlhelp qthelp devhelp epub latex latexpdf text man changes linkcheck doctest gettext
  16. help:
  17. @echo "Please use \`make <target>' where <target> is one of"
  18. # @echo " html to make standalone HTML files"
  19. # @echo " dirhtml to make HTML files named index.html in directories"
  20. # @echo " singlehtml to make a single large HTML file"
  21. # @echo " pickle to make pickle files"
  22. # @echo " json to make JSON files"
  23. # @echo " htmlhelp to make HTML files and a HTML help project"
  24. # @echo " qthelp to make HTML files and a qthelp project"
  25. # @echo " devhelp to make HTML files and a Devhelp project"
  26. # @echo " epub to make an epub"
  27. # @echo " latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter"
  28. # @echo " latexpdf to make LaTeX files and run them through pdflatex"
  29. # @echo " text to make text files"
  30. @echo " man to make a manual page"
  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. @echo " docs to build the docs and copy the static files to the outputdir"
  38. @echo " server to serve the docs in your browser under \`http://localhost:8000\`"
  39. @echo " publish to publish the app to dotcloud"
  40. clean:
  41. -rm -rf $(BUILDDIR)/*
  42. docs:
  43. $(SPHINXBUILD) -b dirhtml $(ALLSPHINXOPTS) $(BUILDDIR)/html
  44. @echo
  45. @echo "Build finished. The documentation pages are now in $(BUILDDIR)/html."
  46. server: docs
  47. @cd $(BUILDDIR)/html; $(PYTHON) -m SimpleHTTPServer 8000
  48. site:
  49. cp -r website $(BUILDDIR)/
  50. cp -r theme/docker/static/ $(BUILDDIR)/website/
  51. @echo
  52. @echo "The Website pages are in $(BUILDDIR)/site."
  53. connect:
  54. @echo connecting dotcloud to www.docker.io website, make sure to use user 1
  55. @echo or create your own "dockerwebsite" app
  56. @cd $(BUILDDIR)/website/ ; \
  57. dotcloud connect dockerwebsite ; \
  58. dotcloud list
  59. push:
  60. @cd $(BUILDDIR)/website/ ; \
  61. dotcloud push
  62. $(VERSIONS):
  63. @echo "Hello world"
  64. html:
  65. $(SPHINXBUILD) -b html $(ALLSPHINXOPTS) $(BUILDDIR)/html
  66. @echo
  67. @echo "Build finished. The HTML pages are in $(BUILDDIR)/html."
  68. dirhtml:
  69. $(SPHINXBUILD) -b dirhtml $(ALLSPHINXOPTS) $(BUILDDIR)/dirhtml
  70. @echo
  71. @echo "Build finished. The HTML pages are in $(BUILDDIR)/dirhtml."
  72. singlehtml:
  73. $(SPHINXBUILD) -b singlehtml $(ALLSPHINXOPTS) $(BUILDDIR)/singlehtml
  74. @echo
  75. @echo "Build finished. The HTML page is in $(BUILDDIR)/singlehtml."
  76. pickle:
  77. $(SPHINXBUILD) -b pickle $(ALLSPHINXOPTS) $(BUILDDIR)/pickle
  78. @echo
  79. @echo "Build finished; now you can process the pickle files."
  80. json:
  81. $(SPHINXBUILD) -b json $(ALLSPHINXOPTS) $(BUILDDIR)/json
  82. @echo
  83. @echo "Build finished; now you can process the JSON files."
  84. htmlhelp:
  85. $(SPHINXBUILD) -b htmlhelp $(ALLSPHINXOPTS) $(BUILDDIR)/htmlhelp
  86. @echo
  87. @echo "Build finished; now you can run HTML Help Workshop with the" \
  88. ".hhp project file in $(BUILDDIR)/htmlhelp."
  89. qthelp:
  90. $(SPHINXBUILD) -b qthelp $(ALLSPHINXOPTS) $(BUILDDIR)/qthelp
  91. @echo
  92. @echo "Build finished; now you can run "qcollectiongenerator" with the" \
  93. ".qhcp project file in $(BUILDDIR)/qthelp, like this:"
  94. @echo "# qcollectiongenerator $(BUILDDIR)/qthelp/Docker.qhcp"
  95. @echo "To view the help file:"
  96. @echo "# assistant -collectionFile $(BUILDDIR)/qthelp/Docker.qhc"
  97. devhelp:
  98. $(SPHINXBUILD) -b devhelp $(ALLSPHINXOPTS) $(BUILDDIR)/devhelp
  99. @echo
  100. @echo "Build finished."
  101. @echo "To view the help file:"
  102. @echo "# mkdir -p $$HOME/.local/share/devhelp/Docker"
  103. @echo "# ln -s $(BUILDDIR)/devhelp $$HOME/.local/share/devhelp/Docker"
  104. @echo "# devhelp"
  105. epub:
  106. $(SPHINXBUILD) -b epub $(ALLSPHINXOPTS) $(BUILDDIR)/epub
  107. @echo
  108. @echo "Build finished. The epub file is in $(BUILDDIR)/epub."
  109. latex:
  110. $(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex
  111. @echo
  112. @echo "Build finished; the LaTeX files are in $(BUILDDIR)/latex."
  113. @echo "Run \`make' in that directory to run these through (pdf)latex" \
  114. "(use \`make latexpdf' here to do that automatically)."
  115. latexpdf:
  116. $(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex
  117. @echo "Running LaTeX files through pdflatex..."
  118. $(MAKE) -C $(BUILDDIR)/latex all-pdf
  119. @echo "pdflatex finished; the PDF files are in $(BUILDDIR)/latex."
  120. text:
  121. $(SPHINXBUILD) -b text $(ALLSPHINXOPTS) $(BUILDDIR)/text
  122. @echo
  123. @echo "Build finished. The text files are in $(BUILDDIR)/text."
  124. man:
  125. $(SPHINXBUILD) -b man $(ALLSPHINXOPTS) $(BUILDDIR)/man
  126. @echo
  127. @echo "Build finished. The manual pages are in $(BUILDDIR)/man."
  128. texinfo:
  129. $(SPHINXBUILD) -b texinfo $(ALLSPHINXOPTS) $(BUILDDIR)/texinfo
  130. @echo
  131. @echo "Build finished. The Texinfo files are in $(BUILDDIR)/texinfo."
  132. @echo "Run \`make' in that directory to run these through makeinfo" \
  133. "(use \`make info' here to do that automatically)."
  134. info:
  135. $(SPHINXBUILD) -b texinfo $(ALLSPHINXOPTS) $(BUILDDIR)/texinfo
  136. @echo "Running Texinfo files through makeinfo..."
  137. make -C $(BUILDDIR)/texinfo info
  138. @echo "makeinfo finished; the Info files are in $(BUILDDIR)/texinfo."
  139. gettext:
  140. $(SPHINXBUILD) -b gettext $(I18NSPHINXOPTS) $(BUILDDIR)/locale
  141. @echo
  142. @echo "Build finished. The message catalogs are in $(BUILDDIR)/locale."
  143. changes:
  144. $(SPHINXBUILD) -b changes $(ALLSPHINXOPTS) $(BUILDDIR)/changes
  145. @echo
  146. @echo "The overview file is in $(BUILDDIR)/changes."
  147. linkcheck:
  148. $(SPHINXBUILD) -b linkcheck $(ALLSPHINXOPTS) $(BUILDDIR)/linkcheck
  149. @echo
  150. @echo "Link check complete; look for any errors in the above output " \
  151. "or in $(BUILDDIR)/linkcheck/output.txt."
  152. doctest:
  153. $(SPHINXBUILD) -b doctest $(ALLSPHINXOPTS) $(BUILDDIR)/doctest
  154. @echo "Testing of doctests in the sources finished, look at the " \
  155. "results in $(BUILDDIR)/doctest/output.txt."