|
3 | 3 |
|
4 | 4 | # You can set these variables from the command line.
|
5 | 5 | SPHINXOPTS =
|
6 |
| -SPHINXBUILD = python `which sphinx-build` |
| 6 | +SPHINXBUILD = sphinx-build |
7 | 7 | PAPER =
|
8 |
| -BUILDDIR = _build |
9 | 8 |
|
10 | 9 | # Internal variables.
|
11 | 10 | PAPEROPT_a4 = -D latex_paper_size=a4
|
12 | 11 | PAPEROPT_letter = -D latex_paper_size=letter
|
13 |
| -ALLSPHINXOPTS = -d $(BUILDDIR)/doctrees $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) . |
14 |
| -EXAMPLEDIR = examples |
| 12 | +ALLSPHINXOPTS = -d _build/doctrees $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) . |
15 | 13 |
|
16 |
| -.PHONY: help clean html dirhtml singlehtml pickle json htmlhelp qthelp devhelp epub latex latexpdf text man changes linkcheck doctest |
| 14 | +.PHONY: help clean html dirhtml pickle json htmlhelp qthelp latex changes linkcheck doctest |
17 | 15 |
|
18 | 16 | help:
|
19 | 17 | @echo "Please use \`make <target>' where <target> is one of"
|
20 |
| - @echo " html to make standalone HTML files" |
21 |
| - @echo " dirhtml to make HTML files named index.html in directories" |
22 |
| - @echo " singlehtml to make a single large HTML file" |
23 |
| - @echo " pickle to make pickle files" |
24 |
| - @echo " json to make JSON files" |
25 |
| - @echo " htmlhelp to make HTML files and a HTML help project" |
26 |
| - @echo " qthelp to make HTML files and a qthelp project" |
27 |
| - @echo " devhelp to make HTML files and a Devhelp project" |
28 |
| - @echo " epub to make an epub" |
29 |
| - @echo " latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter" |
30 |
| - @echo " latexpdf to make LaTeX files and run them through pdflatex" |
31 |
| - @echo " text to make text files" |
32 |
| - @echo " man to make manual pages" |
33 |
| - @echo " changes to make an overview of all changed/added/deprecated items" |
34 |
| - @echo " linkcheck to check all external links for integrity" |
35 |
| - @echo " doctest to run all doctests embedded in the documentation (if enabled)" |
| 18 | + @echo " html_stable to make standalone HTML files (stable version)" |
| 19 | + @echo " html_dev to make standalone HTML files (dev version)" |
| 20 | + @echo " html_dev-pattern to make standalone HTML files for one example dir (dev version)" |
| 21 | + @echo " *-noplot to make standalone HTML files without plotting" |
| 22 | + @echo " dirhtml to make HTML files named index.html in directories" |
| 23 | + @echo " pickle to make pickle files" |
| 24 | + @echo " json to make JSON files" |
| 25 | + @echo " htmlhelp to make HTML files and a HTML help project" |
| 26 | + @echo " qthelp to make HTML files and a qthelp project" |
| 27 | + @echo " latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter" |
| 28 | + @echo " changes to make an overview of all changed/added/deprecated items" |
| 29 | + @echo " linkcheck to check all external links for integrity" |
| 30 | + @echo " doctest to run all doctests embedded in the documentation (if enabled)" |
36 | 31 |
|
37 | 32 | clean:
|
38 |
| - -rm -rf $(BUILDDIR)/* $(EXAMPLEDIR)/* |
| 33 | + -rm -rf _build/* |
| 34 | + -rm -rf auto_examples |
| 35 | + -rm -rf auto_tutorials |
| 36 | + -rm -rf generated |
| 37 | + -rm -rf *.stc |
| 38 | + -rm -rf *.fif |
| 39 | + -rm -rf *.nii.gz |
| 40 | + |
| 41 | +html_stable: |
| 42 | + $(SPHINXBUILD) -D raise_gallery=1 -b html $(ALLSPHINXOPTS) _build/html_stable |
| 43 | + @echo |
| 44 | + @echo "Build finished. The HTML pages are in _build/html_stable." |
39 | 45 |
|
40 |
| -html: |
41 |
| - ../bin/pysurfer --help > documentation/pysurfer_usage.txt |
42 |
| - $(SPHINXBUILD) -b html $(ALLSPHINXOPTS) $(BUILDDIR)/html |
| 46 | +html_dev: |
| 47 | + BUILD_DEV_HTML=1 $(SPHINXBUILD) -D raise_gallery=1 -D abort_on_example_error=1 -b html $(ALLSPHINXOPTS) _build/html |
43 | 48 | @echo
|
44 |
| - @echo "Build finished. The HTML pages are in $(BUILDDIR)/html." |
| 49 | + @echo "Build finished. The HTML pages are in _build/html" |
45 | 50 |
|
46 |
| -dirhtml: |
47 |
| - $(SPHINXBUILD) -b dirhtml $(ALLSPHINXOPTS) $(BUILDDIR)/dirhtml |
| 51 | +html_dev-pattern: |
| 52 | + BUILD_DEV_HTML=1 $(SPHINXBUILD) -D plot_gallery=1 -D raise_gallery=1 -D abort_on_example_error=1 -D sphinx_gallery_conf.filename_pattern=$(PATTERN) -b html $(ALLSPHINXOPTS) _build/html |
| 53 | + @echo |
| 54 | + @echo "Build finished. The HTML pages are in _build/html" |
| 55 | + |
| 56 | +html_dev-noplot: |
| 57 | + BUILD_DEV_HTML=1 $(SPHINXBUILD) -D plot_gallery=0 -b html $(ALLSPHINXOPTS) _build/html |
48 | 58 | @echo
|
49 |
| - @echo "Build finished. The HTML pages are in $(BUILDDIR)/dirhtml." |
| 59 | + @echo "Build finished. The HTML pages are in _build/html." |
50 | 60 |
|
51 |
| -singlehtml: |
52 |
| - $(SPHINXBUILD) -b singlehtml $(ALLSPHINXOPTS) $(BUILDDIR)/singlehtml |
| 61 | +dirhtml: |
| 62 | + $(SPHINXBUILD) -b dirhtml $(ALLSPHINXOPTS) _build/dirhtml |
53 | 63 | @echo
|
54 |
| - @echo "Build finished. The HTML page is in $(BUILDDIR)/singlehtml." |
| 64 | + @echo "Build finished. The HTML pages are in _build/dirhtml." |
55 | 65 |
|
56 | 66 | pickle:
|
57 |
| - $(SPHINXBUILD) -b pickle $(ALLSPHINXOPTS) $(BUILDDIR)/pickle |
| 67 | + $(SPHINXBUILD) -b pickle $(ALLSPHINXOPTS) _build/pickle |
58 | 68 | @echo
|
59 | 69 | @echo "Build finished; now you can process the pickle files."
|
60 | 70 |
|
61 | 71 | json:
|
62 |
| - $(SPHINXBUILD) -b json $(ALLSPHINXOPTS) $(BUILDDIR)/json |
| 72 | + $(SPHINXBUILD) -b json $(ALLSPHINXOPTS) _build/json |
63 | 73 | @echo
|
64 | 74 | @echo "Build finished; now you can process the JSON files."
|
65 | 75 |
|
66 | 76 | htmlhelp:
|
67 |
| - $(SPHINXBUILD) -b htmlhelp $(ALLSPHINXOPTS) $(BUILDDIR)/htmlhelp |
| 77 | + $(SPHINXBUILD) -b htmlhelp $(ALLSPHINXOPTS) _build/htmlhelp |
68 | 78 | @echo
|
69 | 79 | @echo "Build finished; now you can run HTML Help Workshop with the" \
|
70 |
| - ".hhp project file in $(BUILDDIR)/htmlhelp." |
| 80 | + ".hhp project file in _build/htmlhelp." |
71 | 81 |
|
72 | 82 | qthelp:
|
73 |
| - $(SPHINXBUILD) -b qthelp $(ALLSPHINXOPTS) $(BUILDDIR)/qthelp |
| 83 | + $(SPHINXBUILD) -b qthelp $(ALLSPHINXOPTS) _build/qthelp |
74 | 84 | @echo
|
75 | 85 | @echo "Build finished; now you can run "qcollectiongenerator" with the" \
|
76 |
| - ".qhcp project file in $(BUILDDIR)/qthelp, like this:" |
77 |
| - @echo "# qcollectiongenerator $(BUILDDIR)/qthelp/PySurfer.qhcp" |
78 |
| - @echo "To view the help file:" |
79 |
| - @echo "# assistant -collectionFile $(BUILDDIR)/qthelp/PySurfer.qhc" |
80 |
| - |
81 |
| -devhelp: |
82 |
| - $(SPHINXBUILD) -b devhelp $(ALLSPHINXOPTS) $(BUILDDIR)/devhelp |
83 |
| - @echo |
84 |
| - @echo "Build finished." |
| 86 | + ".qhcp project file in _build/qthelp, like this:" |
| 87 | + @echo "# qcollectiongenerator _build/qthelp/MNE.qhcp" |
85 | 88 | @echo "To view the help file:"
|
86 |
| - @echo "# mkdir -p $$HOME/.local/share/devhelp/PySurfer" |
87 |
| - @echo "# ln -s $(BUILDDIR)/devhelp $$HOME/.local/share/devhelp/PySurfer" |
88 |
| - @echo "# devhelp" |
89 |
| - |
90 |
| -epub: |
91 |
| - $(SPHINXBUILD) -b epub $(ALLSPHINXOPTS) $(BUILDDIR)/epub |
92 |
| - @echo |
93 |
| - @echo "Build finished. The epub file is in $(BUILDDIR)/epub." |
| 89 | + @echo "# assistant -collectionFile _build/qthelp/MNE.qhc" |
94 | 90 |
|
95 | 91 | latex:
|
96 |
| - $(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex |
| 92 | + $(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) _build/latex |
97 | 93 | @echo
|
98 |
| - @echo "Build finished; the LaTeX files are in $(BUILDDIR)/latex." |
99 |
| - @echo "Run \`make' in that directory to run these through (pdf)latex" \ |
100 |
| - "(use \`make latexpdf' here to do that automatically)." |
101 |
| - |
102 |
| -latexpdf: |
103 |
| - $(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex |
104 |
| - @echo "Running LaTeX files through pdflatex..." |
105 |
| - make -C $(BUILDDIR)/latex all-pdf |
106 |
| - @echo "pdflatex finished; the PDF files are in $(BUILDDIR)/latex." |
107 |
| - |
108 |
| -text: |
109 |
| - $(SPHINXBUILD) -b text $(ALLSPHINXOPTS) $(BUILDDIR)/text |
110 |
| - @echo |
111 |
| - @echo "Build finished. The text files are in $(BUILDDIR)/text." |
112 |
| - |
113 |
| -man: |
114 |
| - $(SPHINXBUILD) -b man $(ALLSPHINXOPTS) $(BUILDDIR)/man |
115 |
| - @echo |
116 |
| - @echo "Build finished. The manual pages are in $(BUILDDIR)/man." |
| 94 | + @echo "Build finished; the LaTeX files are in _build/latex." |
| 95 | + @echo "Run \`make all-pdf' or \`make all-ps' in that directory to" \ |
| 96 | + "run these through (pdf)latex." |
117 | 97 |
|
118 | 98 | changes:
|
119 |
| - $(SPHINXBUILD) -b changes $(ALLSPHINXOPTS) $(BUILDDIR)/changes |
| 99 | + $(SPHINXBUILD) -b changes $(ALLSPHINXOPTS) _build/changes |
120 | 100 | @echo
|
121 |
| - @echo "The overview file is in $(BUILDDIR)/changes." |
| 101 | + @echo "The overview file is in _build/changes." |
122 | 102 |
|
123 | 103 | linkcheck:
|
124 |
| - $(SPHINXBUILD) -b linkcheck $(ALLSPHINXOPTS) $(BUILDDIR)/linkcheck |
| 104 | + $(SPHINXBUILD) -b linkcheck $(ALLSPHINXOPTS) _build/linkcheck |
125 | 105 | @echo
|
126 | 106 | @echo "Link check complete; look for any errors in the above output " \
|
127 |
| - "or in $(BUILDDIR)/linkcheck/output.txt." |
| 107 | + "or in _build/linkcheck/output.txt." |
128 | 108 |
|
129 | 109 | doctest:
|
130 |
| - $(SPHINXBUILD) -b doctest $(ALLSPHINXOPTS) $(BUILDDIR)/doctest |
| 110 | + $(SPHINXBUILD) -b doctest $(ALLSPHINXOPTS) _build/doctest |
131 | 111 | @echo "Testing of doctests in the sources finished, look at the " \
|
132 |
| - "results in $(BUILDDIR)/doctest/output.txt." |
| 112 | + "results in _build/doctest/output.txt." |
| 113 | + |
| 114 | +view: |
| 115 | + @python -c "import webbrowser; webbrowser.open_new_tab('file://$(PWD)/_build/html/index.html')" |
| 116 | + |
| 117 | +show: view |
0 commit comments