diff options
author | baude <bbaude@redhat.com> | 2019-10-22 15:23:54 -0500 |
---|---|---|
committer | baude <bbaude@redhat.com> | 2019-10-22 15:28:32 -0500 |
commit | aac33a4a30a596a395f043b5762c88ccccc571a5 (patch) | |
tree | 61c140c8943642091e3bec5acb59e06b35a1e00d /docs/rtd/Makefile | |
parent | d358840ebe02f45ef782546fc3f8369ff2870ea5 (diff) | |
download | podman-aac33a4a30a596a395f043b5762c88ccccc571a5.tar.gz podman-aac33a4a30a596a395f043b5762c88ccccc571a5.tar.bz2 podman-aac33a4a30a596a395f043b5762c88ccccc571a5.zip |
Initial checking for readthedocs
Signed-off-by: baude <bbaude@redhat.com>
Diffstat (limited to 'docs/rtd/Makefile')
-rw-r--r-- | docs/rtd/Makefile | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/docs/rtd/Makefile b/docs/rtd/Makefile new file mode 100644 index 000000000..d0c3cbf10 --- /dev/null +++ b/docs/rtd/Makefile @@ -0,0 +1,20 @@ +# Minimal makefile for Sphinx documentation +# + +# You can set these variables from the command line, and also +# from the environment for the first two. +SPHINXOPTS ?= +SPHINXBUILD ?= sphinx-build +SOURCEDIR = source +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) |