diff options
author | drebs <drebs@leap.se> | 2017-05-04 15:59:47 +0200 |
---|---|---|
committer | drebs <drebs@leap.se> | 2017-05-04 16:16:50 +0200 |
commit | ad065fc8c9204e6d63b7fb69b1d9cf469812237f (patch) | |
tree | 05682fee4ba560aed9f7a224a8e11a95e174deb0 /docs/sphinx/Makefile | |
parent | 6008e999eea82bb4355b086453be42414a4d60c9 (diff) |
[doc] add attachments documentation
Diffstat (limited to 'docs/sphinx/Makefile')
-rw-r--r-- | docs/sphinx/Makefile | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/docs/sphinx/Makefile b/docs/sphinx/Makefile new file mode 100644 index 00000000..dcc387ce --- /dev/null +++ b/docs/sphinx/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) |