diff options
author | Daniel Schadt <kingdread@gmx.de> | 2022-07-09 11:28:32 +0200 |
---|---|---|
committer | Daniel Schadt <kingdread@gmx.de> | 2022-07-09 11:37:30 +0200 |
commit | 6e0588f4cb26548344a33f8530ded631e7e85aaf (patch) | |
tree | c892ec9aa66189486a511988419d53c1deb282ed /doc/Makefile | |
parent | bb6714e9d7468465f23bf0e163d06517de397dbe (diff) | |
download | fietsboek-6e0588f4cb26548344a33f8530ded631e7e85aaf.tar.gz fietsboek-6e0588f4cb26548344a33f8530ded631e7e85aaf.tar.bz2 fietsboek-6e0588f4cb26548344a33f8530ded631e7e85aaf.zip |
start writing docs properly, not in the README
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) |