Diff of /Docs/Makefile [000000] .. [38ba34]

Switch to unified view

a b/Docs/Makefile
1
# Minimal makefile for Sphinx documentation
2
#
3
4
# You can set these variables from the command line.
5
SPHINXOPTS    =
6
SPHINXBUILD   = python -msphinx
7
SPHINXPROJ    = AMMRManual
8
SOURCEDIR     = .
9
BUILDDIR      = _build
10
11
12
html: 
13
    @$(SPHINXBUILD) -M html "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
14
15
html-dev: 
16
    @$(SPHINXBUILD) -M html "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) -t draft $(O)
17
18
clean:
19
    rm -rf $(BUILDDIR)/*
20
    rm -rf auto_examples/
21
22
# Put it first so that "make" without argument is like "make help".
23
help:
24
    @$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
25
26
.PHONY: help Makefile
27
28
# Catch-all target: route all unknown targets to Sphinx using the new
29
# "make mode" option.  $(O) is meant as a shortcut for $(SPHINXOPTS).
30
%: Makefile
31
    @$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)