"docs/_removed/TrialExample/MnistExamples.rst" did not exist on "bc0e55a00bbbc825f27d851ccc58a749d18b4fd9"
Makefile 813 Bytes
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# Minimal makefile for Sphinx documentation
#

# You can set these variables from the command line, and also
# from the environment for the first two.
SPHINXOPTS    ?=
SPHINXBUILD   ?= python -m sphinx
SOURCEDIR     = .
BUILDDIR      = _build

# Put it first so that "make" without argument is like "make help".
help:
	@$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)

15
16
17
18
19
20
.PHONY: help Makefile clean

# The "clean" target is updated to remove the autoapi generated files as well.
# Run "make clean" to ensure a completely fresh build.
clean:
	rm -rf $(BUILDDIR) autoapi
21
22

# Catch-all target: route all unknown targets to Sphinx using the new
23
# "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS).
24
25
%: Makefile
	@$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)