diff options
author | Jonathan Weth <git@jonathanweth.de> | 2020-07-27 15:31:27 +0200 |
---|---|---|
committer | Jonathan Weth <git@jonathanweth.de> | 2020-07-27 15:31:27 +0200 |
commit | c63e4627ec0613f7fcc6d9a936c14a64a2655b33 (patch) | |
tree | f112d16b468b1bdb4cb99fd4b2398bf85d598a49 /docs/Makefile | |
parent | 33cbf9670d6abde5544f8be0a837cd19ccb79973 (diff) | |
download | RWA.Support.SessionService-c63e4627ec0613f7fcc6d9a936c14a64a2655b33.tar.gz RWA.Support.SessionService-c63e4627ec0613f7fcc6d9a936c14a64a2655b33.tar.bz2 RWA.Support.SessionService-c63e4627ec0613f7fcc6d9a936c14a64a2655b33.zip |
Add documentation
Diffstat (limited to 'docs/Makefile')
-rw-r--r-- | docs/Makefile | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/docs/Makefile b/docs/Makefile new file mode 100644 index 0000000..5128596 --- /dev/null +++ b/docs/Makefile @@ -0,0 +1,19 @@ +# Minimal makefile for Sphinx documentation +# + +# You can set these variables from the command line. +SPHINXOPTS = +SPHINXBUILD = sphinx-build +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) |