diff options
author | Daniel Schadt <kingdread@gmx.de> | 2021-08-22 23:52:06 +0200 |
---|---|---|
committer | Daniel Schadt <kingdread@gmx.de> | 2021-08-22 23:52:06 +0200 |
commit | 23077006b0fdbbf645652d1f76e4be3fe374537f (patch) | |
tree | 743f6f98de9979bf758152bf1fc4e3b82d9688fc /doc/Makefile | |
parent | f39ec7d2f4b609c0968767590eeb864a48b41401 (diff) | |
download | wikimini-23077006b0fdbbf645652d1f76e4be3fe374537f.tar.gz wikimini-23077006b0fdbbf645652d1f76e4be3fe374537f.tar.bz2 wikimini-23077006b0fdbbf645652d1f76e4be3fe374537f.zip |
Add some initial documentation
Diffstat (limited to 'doc/Makefile')
-rw-r--r-- | doc/Makefile | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/doc/Makefile b/doc/Makefile new file mode 100644 index 0000000..d4bb2cb --- /dev/null +++ b/doc/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 = . +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) |