diff options
author | drebs <drebs@leap.se> | 2017-06-06 15:12:56 -0300 |
---|---|---|
committer | Kali Kaneko <kali@leap.se> | 2017-06-06 20:35:46 +0200 |
commit | 9dd3ebe6bad0bfe05840782c805e961cf4a96c6a (patch) | |
tree | 0f8d4b3e907cbdb88a5fcdf0d954cdc600a1fd17 /docs/Makefile | |
parent | ddef89b093929387614c52896ae4e10b3714be65 (diff) |
[doc] move sphinx up to root of docs dir
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 00000000..dcc387ce --- /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 = Soledad +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) |