diff options
author | Trygve Laugstøl <trygvis@inamo.no> | 2018-07-30 21:33:55 +0200 |
---|---|---|
committer | Trygve Laugstøl <trygvis@inamo.no> | 2018-07-30 21:33:55 +0200 |
commit | ad24cb793f2aa17d3af4bf6f5e1e2d0473d1e088 (patch) | |
tree | 087263521d6a854adab5da2c22445b6e2eabe235 /docs/Makefile | |
parent | a25bba9dd40b5dd6b0d85fd415634e2e768fe40b (diff) | |
download | ee-python-ad24cb793f2aa17d3af4bf6f5e1e2d0473d1e088.tar.gz ee-python-ad24cb793f2aa17d3af4bf6f5e1e2d0473d1e088.tar.bz2 ee-python-ad24cb793f2aa17d3af4bf6f5e1e2d0473d1e088.tar.xz ee-python-ad24cb793f2aa17d3af4bf6f5e1e2d0473d1e088.zip |
o Starting on some docs.
Diffstat (limited to 'docs/Makefile')
-rw-r--r-- | docs/Makefile | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/docs/Makefile b/docs/Makefile new file mode 100644 index 0000000..aa8ba09 --- /dev/null +++ b/docs/Makefile @@ -0,0 +1,20 @@ +# Minimal makefile for Sphinx documentation +# + +# You can set these variables from the command line. +SPHINXOPTS = +SPHINXBUILD = sphinx-build +SPHINXPROJ = EETools +SOURCEDIR = . +BUILDDIR = _build + +# Put it first so that "make" without argument is like "make help". +help: + @$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) + +.PHONY: help Makefile + +# Catch-all target: route all unknown targets to Sphinx using the new +# "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS). +%: Makefile + @$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) |