2
2
#
3
3
4
4
# You can set these variables from the command line.
5
- SPHINXOPTS =
6
5
SPHINXBUILD = sphinx-build
7
- PAPER =
8
6
SOURCEDIR = docs/source
9
- BUILDDIR = docs/_build
7
+ BUILDDIR = docs/build
8
+
9
+ rtd : export READTHEDOCS=true
10
10
11
11
# User-friendly check for sphinx-build
12
12
ifeq ($(shell which $(SPHINXBUILD ) >/dev/null 2>&1; echo $$? ) , 1)
13
13
$(error The '$(SPHINXBUILD ) ' command was not found. Make sure you have Sphinx installed, then set the SPHINXBUILD environment variable to point to the full path of the '$(SPHINXBUILD ) ' executable. Alternatively you can add the directory with the executable to your PATH. If you don't have Sphinx installed, grab it from http ://sphinx-doc.org/)
14
14
endif
15
15
16
- # Internal variables.
17
- PAPEROPT_a4 = -D latex_paper_size=a4
18
- PAPEROPT_letter = -D latex_paper_size=letter
19
- ALLSPHINXOPTS = -d $(BUILDDIR ) /doctrees $(PAPEROPT_$(PAPER ) ) $(SPHINXOPTS ) .
20
- # the i18n builder cannot share the environment and doctrees with the others
21
- I18NSPHINXOPTS = $(PAPEROPT_$(PAPER ) ) $(SPHINXOPTS ) .
22
-
23
- .PHONY : help clean html dirhtml singlehtml pickle json htmlhelp qthelp devhelp epub latex latexpdf text man changes linkcheck doctest coverage gettext
16
+ .PHONY : help clean html rtd view
24
17
25
18
help :
26
19
@echo " Please use \` make <target>' where <target> is one of"
27
20
@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 " applehelp to make an Apple Help Book"
35
- @echo " devhelp to make HTML files and a Devhelp project"
36
- @echo " epub to make an epub"
37
- @echo " latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter"
38
- @echo " latexpdf to make LaTeX files and run them through pdflatex"
39
- @echo " latexpdfja to make LaTeX files and run them through platex/dvipdfmx"
40
- @echo " text to make text files"
41
- @echo " man to make manual pages"
42
- @echo " texinfo to make Texinfo files"
43
- @echo " info to make Texinfo files and run them through makeinfo"
44
- @echo " gettext to make PO message catalogs"
45
- @echo " changes to make an overview of all changed/added/deprecated items"
46
- @echo " xml to make Docutils-native XML files"
47
- @echo " pseudoxml to make pseudoxml-XML files for display purposes"
48
- @echo " linkcheck to check all external links for integrity"
49
- @echo " doctest to run all doctests embedded in the documentation (if enabled)"
50
- @echo " coverage to run coverage check of the documentation (if enabled)"
51
- @echo " serve to launch a server from built html files"
21
+ @echo " rtd to build the website without any cache"
22
+ @echo " clean to clean cache and intermediate files"
23
+ @echo " view to open the built html files"
52
24
53
25
clean :
54
26
rm -rf $(BUILDDIR ) /*
@@ -62,140 +34,10 @@ html:
62
34
@echo
63
35
@echo " Build finished. The HTML pages are in $( BUILDDIR) ."
64
36
65
- dirhtml :
66
- $(SPHINXBUILD ) -b dirhtml $(ALLSPHINXOPTS ) $(BUILDDIR ) /dirhtml
67
- @echo
68
- @echo " Build finished. The HTML pages are in $( BUILDDIR) /dirhtml."
69
-
70
- singlehtml :
71
- $(SPHINXBUILD ) -b singlehtml $(ALLSPHINXOPTS ) $(BUILDDIR ) /singlehtml
72
- @echo
73
- @echo " Build finished. The HTML page is in $( BUILDDIR) /singlehtml."
74
-
75
- pickle :
76
- $(SPHINXBUILD ) -b pickle $(ALLSPHINXOPTS ) $(BUILDDIR ) /pickle
77
- @echo
78
- @echo " Build finished; now you can process the pickle files."
79
-
80
- json :
81
- $(SPHINXBUILD ) -b json $(ALLSPHINXOPTS ) $(BUILDDIR ) /json
82
- @echo
83
- @echo " Build finished; now you can process the JSON files."
84
-
85
- htmlhelp :
86
- $(SPHINXBUILD ) -b htmlhelp $(ALLSPHINXOPTS ) $(BUILDDIR ) /htmlhelp
87
- @echo
88
- @echo " Build finished; now you can run HTML Help Workshop with the" \
89
- " .hhp project file in $( BUILDDIR) /htmlhelp."
90
-
91
- qthelp :
92
- $(SPHINXBUILD ) -b qthelp $(ALLSPHINXOPTS ) $(BUILDDIR ) /qthelp
93
- @echo
94
- @echo " Build finished; now you can run " qcollectiongenerator" with the" \
95
- " .qhcp project file in $( BUILDDIR) /qthelp, like this:"
96
- @echo " # qcollectiongenerator $( BUILDDIR) /qthelp/pymc.qhcp"
97
- @echo " To view the help file:"
98
- @echo " # assistant -collectionFile $( BUILDDIR) /qthelp/pymc.qhc"
99
-
100
- applehelp :
101
- $(SPHINXBUILD ) -b applehelp $(ALLSPHINXOPTS ) $(BUILDDIR ) /applehelp
102
- @echo
103
- @echo " Build finished. The help book is in $( BUILDDIR) /applehelp."
104
- @echo " N.B. You won't be able to view it unless you put it in" \
105
- " ~/Library/Documentation/Help or install it in your application" \
106
- " bundle."
107
-
108
- devhelp :
109
- $(SPHINXBUILD ) -b devhelp $(ALLSPHINXOPTS ) $(BUILDDIR ) /devhelp
110
- @echo
111
- @echo " Build finished."
112
- @echo " To view the help file:"
113
- @echo " # mkdir -p $$ HOME/.local/share/devhelp/pymc"
114
- @echo " # ln -s $( BUILDDIR) /devhelp $$ HOME/.local/share/devhelp/pymc"
115
- @echo " # devhelp"
116
-
117
- epub :
118
- $(SPHINXBUILD ) -b epub $(ALLSPHINXOPTS ) $(BUILDDIR ) /epub
119
- @echo
120
- @echo " Build finished. The epub file is in $( BUILDDIR) /epub."
121
-
122
- latex :
123
- $(SPHINXBUILD ) -b latex $(ALLSPHINXOPTS ) $(BUILDDIR ) /latex
124
- @echo
125
- @echo " Build finished; the LaTeX files are in $( BUILDDIR) /latex."
126
- @echo " Run \` make' in that directory to run these through (pdf)latex" \
127
- " (use \` make latexpdf' here to do that automatically)."
128
-
129
- latexpdf :
130
- $(SPHINXBUILD ) -b latex $(ALLSPHINXOPTS ) $(BUILDDIR ) /latex
131
- @echo " Running LaTeX files through pdflatex..."
132
- $(MAKE ) -C $(BUILDDIR ) /latex all-pdf
133
- @echo " pdflatex finished; the PDF files are in $( BUILDDIR) /latex."
134
-
135
- latexpdfja :
136
- $(SPHINXBUILD ) -b latex $(ALLSPHINXOPTS ) $(BUILDDIR ) /latex
137
- @echo " Running LaTeX files through platex and dvipdfmx..."
138
- $(MAKE ) -C $(BUILDDIR ) /latex all-pdf-ja
139
- @echo " pdflatex finished; the PDF files are in $( BUILDDIR) /latex."
140
-
141
- text :
142
- $(SPHINXBUILD ) -b text $(ALLSPHINXOPTS ) $(BUILDDIR ) /text
37
+ rtd : clean
38
+ $(SPHINXBUILD ) $(SOURCEDIR ) $(BUILDDIR ) -b html -E
143
39
@echo
144
- @echo " Build finished. The text files are in $( BUILDDIR) /text."
145
-
146
- man :
147
- $(SPHINXBUILD ) -b man $(ALLSPHINXOPTS ) $(BUILDDIR ) /man
148
- @echo
149
- @echo " Build finished. The manual pages are in $( BUILDDIR) /man."
150
-
151
- texinfo :
152
- $(SPHINXBUILD ) -b texinfo $(ALLSPHINXOPTS ) $(BUILDDIR ) /texinfo
153
- @echo
154
- @echo " Build finished. The Texinfo files are in $( BUILDDIR) /texinfo."
155
- @echo " Run \` make' in that directory to run these through makeinfo" \
156
- " (use \` make info' here to do that automatically)."
157
-
158
- info :
159
- $(SPHINXBUILD ) -b texinfo $(ALLSPHINXOPTS ) $(BUILDDIR ) /texinfo
160
- @echo " Running Texinfo files through makeinfo..."
161
- make -C $(BUILDDIR ) /texinfo info
162
- @echo " makeinfo finished; the Info files are in $( BUILDDIR) /texinfo."
163
-
164
- gettext :
165
- $(SPHINXBUILD ) -b gettext $(I18NSPHINXOPTS ) $(BUILDDIR ) /locale
166
- @echo
167
- @echo " Build finished. The message catalogs are in $( BUILDDIR) /locale."
168
-
169
- changes :
170
- $(SPHINXBUILD ) -b changes $(ALLSPHINXOPTS ) $(BUILDDIR ) /changes
171
- @echo
172
- @echo " The overview file is in $( BUILDDIR) /changes."
173
-
174
- linkcheck :
175
- $(SPHINXBUILD ) -b linkcheck $(ALLSPHINXOPTS ) $(BUILDDIR ) /linkcheck
176
- @echo
177
- @echo " Link check complete; look for any errors in the above output " \
178
- " or in $( BUILDDIR) /linkcheck/output.txt."
179
-
180
- doctest :
181
- $(SPHINXBUILD ) -b doctest $(ALLSPHINXOPTS ) $(BUILDDIR ) /doctest
182
- @echo " Testing of doctests in the sources finished, look at the " \
183
- " results in $( BUILDDIR) /doctest/output.txt."
184
-
185
- coverage :
186
- $(SPHINXBUILD ) -b coverage $(ALLSPHINXOPTS ) $(BUILDDIR ) /coverage
187
- @echo " Testing of coverage in the sources finished, look at the " \
188
- " results in $( BUILDDIR) /coverage/python.txt."
189
-
190
- xml :
191
- $(SPHINXBUILD ) -b xml $(ALLSPHINXOPTS ) $(BUILDDIR ) /xml
192
- @echo
193
- @echo " Build finished. The XML files are in $( BUILDDIR) /xml."
194
-
195
- pseudoxml :
196
- $(SPHINXBUILD ) -b pseudoxml $(ALLSPHINXOPTS ) $(BUILDDIR ) /pseudoxml
197
- @echo
198
- @echo " Build finished. The pseudo-XML files are in $( BUILDDIR) /pseudoxml."
40
+ @echo " Build finished. The HTML pages are in $( BUILDDIR) ."
199
41
200
- serve : html
201
- python -m http.server --directory $(BUILDDIR )
42
+ view :
43
+ python -m webbrowser $(BUILDDIR ) /index.html
0 commit comments