~ubuntu-branches/ubuntu/precise/keystone/precise

« back to all changes in this revision

Viewing changes to docs/Makefile

  • Committer: Package Import Robot
  • Author(s): Chuck Short, Adam Gandleman, Chuck Short
  • Date: 2012-03-09 12:26:12 UTC
  • mfrom: (1.1.12)
  • Revision ID: package-import@ubuntu.com-20120309122612-6tqkztfb1bgnswhe
Tags: 2012.1~rc1~20120308.2103-0ubuntu1
[ Adam Gandleman ]
* debian/patches/keystone-auth.patch: Drop, applied upstream at commit
  29337e66.
* debian/patches/sql_connection.patch: Refresh

[ Chuck Short ]
* New upstream release.
* debian/patches/sql_connection.patch: Refreshed.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Makefile for Sphinx documentation
2
 
#
3
 
 
4
 
# You can set these variables from the command line.
5
 
SPHINXOPTS    =
6
 
SPHINXBUILD   = sphinx-build
7
 
PAPER         =
8
 
BUILDDIR      = build
9
 
SOURCEDIR     = source
10
 
SPHINXAPIDOC  = sphinx-apidoc
11
 
 
12
 
# Internal variables.
13
 
PAPEROPT_a4     = -D latex_paper_size=a4
14
 
PAPEROPT_letter = -D latex_paper_size=letter
15
 
ALLSPHINXOPTS   = -d $(BUILDDIR)/doctrees $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) source
16
 
# the i18n builder cannot share the environment and doctrees with the others
17
 
I18NSPHINXOPTS  = $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) source
18
 
 
19
 
.PHONY: help clean html dirhtml singlehtml pickle json htmlhelp qthelp devhelp epub latex latexpdf text man changes linkcheck doctest gettext
20
 
 
21
 
help:
22
 
        @echo "Please use \`make <target>' where <target> is one of"
23
 
        @echo "  autodoc    generate the autodoc templates"
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
 
 
44
 
clean:
45
 
        -rm -rf $(BUILDDIR)/*
46
 
 
47
 
autodoc:
48
 
        $(SPHINXAPIDOC) -f -o $(SOURCEDIR) ../keystone
49
 
 
50
 
html: autodoc
51
 
        $(SPHINXBUILD) -b html $(ALLSPHINXOPTS) $(BUILDDIR)/html
52
 
        @echo
53
 
        @echo "Build finished. The HTML pages are in $(BUILDDIR)/html."
54
 
 
55
 
dirhtml:
56
 
        $(SPHINXBUILD) -b dirhtml $(ALLSPHINXOPTS) $(BUILDDIR)/dirhtml
57
 
        @echo
58
 
        @echo "Build finished. The HTML pages are in $(BUILDDIR)/dirhtml."
59
 
 
60
 
singlehtml:
61
 
        $(SPHINXBUILD) -b singlehtml $(ALLSPHINXOPTS) $(BUILDDIR)/singlehtml
62
 
        @echo
63
 
        @echo "Build finished. The HTML page is in $(BUILDDIR)/singlehtml."
64
 
 
65
 
pickle:
66
 
        $(SPHINXBUILD) -b pickle $(ALLSPHINXOPTS) $(BUILDDIR)/pickle
67
 
        @echo
68
 
        @echo "Build finished; now you can process the pickle files."
69
 
 
70
 
json:
71
 
        $(SPHINXBUILD) -b json $(ALLSPHINXOPTS) $(BUILDDIR)/json
72
 
        @echo
73
 
        @echo "Build finished; now you can process the JSON files."
74
 
 
75
 
htmlhelp:
76
 
        $(SPHINXBUILD) -b htmlhelp $(ALLSPHINXOPTS) $(BUILDDIR)/htmlhelp
77
 
        @echo
78
 
        @echo "Build finished; now you can run HTML Help Workshop with the" \
79
 
              ".hhp project file in $(BUILDDIR)/htmlhelp."
80
 
 
81
 
qthelp:
82
 
        $(SPHINXBUILD) -b qthelp $(ALLSPHINXOPTS) $(BUILDDIR)/qthelp
83
 
        @echo
84
 
        @echo "Build finished; now you can run "qcollectiongenerator" with the" \
85
 
              ".qhcp project file in $(BUILDDIR)/qthelp, like this:"
86
 
        @echo "# qcollectiongenerator $(BUILDDIR)/qthelp/keystone.qhcp"
87
 
        @echo "To view the help file:"
88
 
        @echo "# assistant -collectionFile $(BUILDDIR)/qthelp/keystone.qhc"
89
 
 
90
 
devhelp:
91
 
        $(SPHINXBUILD) -b devhelp $(ALLSPHINXOPTS) $(BUILDDIR)/devhelp
92
 
        @echo
93
 
        @echo "Build finished."
94
 
        @echo "To view the help file:"
95
 
        @echo "# mkdir -p $$HOME/.local/share/devhelp/keystone"
96
 
        @echo "# ln -s $(BUILDDIR)/devhelp $$HOME/.local/share/devhelp/keystone"
97
 
        @echo "# devhelp"
98
 
 
99
 
epub:
100
 
        $(SPHINXBUILD) -b epub $(ALLSPHINXOPTS) $(BUILDDIR)/epub
101
 
        @echo
102
 
        @echo "Build finished. The epub file is in $(BUILDDIR)/epub."
103
 
 
104
 
latex:
105
 
        $(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex
106
 
        @echo
107
 
        @echo "Build finished; the LaTeX files are in $(BUILDDIR)/latex."
108
 
        @echo "Run \`make' in that directory to run these through (pdf)latex" \
109
 
              "(use \`make latexpdf' here to do that automatically)."
110
 
 
111
 
latexpdf:
112
 
        $(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex
113
 
        @echo "Running LaTeX files through pdflatex..."
114
 
        $(MAKE) -C $(BUILDDIR)/latex all-pdf
115
 
        @echo "pdflatex finished; the PDF files are in $(BUILDDIR)/latex."
116
 
 
117
 
text:
118
 
        $(SPHINXBUILD) -b text $(ALLSPHINXOPTS) $(BUILDDIR)/text
119
 
        @echo
120
 
        @echo "Build finished. The text files are in $(BUILDDIR)/text."
121
 
 
122
 
man:
123
 
        $(SPHINXBUILD) -b man $(ALLSPHINXOPTS) $(BUILDDIR)/man
124
 
        @echo
125
 
        @echo "Build finished. The manual pages are in $(BUILDDIR)/man."
126
 
 
127
 
texinfo:
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
 
 
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
 
 
140
 
gettext:
141
 
        $(SPHINXBUILD) -b gettext $(I18NSPHINXOPTS) $(BUILDDIR)/locale
142
 
        @echo
143
 
        @echo "Build finished. The message catalogs are in $(BUILDDIR)/locale."
144
 
 
145
 
changes:
146
 
        $(SPHINXBUILD) -b changes $(ALLSPHINXOPTS) $(BUILDDIR)/changes
147
 
        @echo
148
 
        @echo "The overview file is in $(BUILDDIR)/changes."
149
 
 
150
 
linkcheck:
151
 
        $(SPHINXBUILD) -b linkcheck $(ALLSPHINXOPTS) $(BUILDDIR)/linkcheck
152
 
        @echo
153
 
        @echo "Link check complete; look for any errors in the above output " \
154
 
              "or in $(BUILDDIR)/linkcheck/output.txt."
155
 
 
156
 
doctest:
157
 
        $(SPHINXBUILD) -b doctest $(ALLSPHINXOPTS) $(BUILDDIR)/doctest
158
 
        @echo "Testing of doctests in the sources finished, look at the " \
159
 
              "results in $(BUILDDIR)/doctest/output.txt."