1# Minimal makefile for Sphinx documentation
2#
3
4# You can set these variables from the command line, and also
5# from the environment for the first two.
6SPHINXOPTS    ?=
7SPHINXBUILD   ?= sphinx-build
8SOURCEDIR     = .
9BUILDDIR      = _build
10
11# Respective MANPATH entries would include /usr/local/share/man or $HOME/man.
12INSTALLDIR=/usr/local/share/man/man1
13INSTALLHOME=$(HOME)/man/man1
14
15# Put it first so that "make" without argument is like "make help".
16help:
17	@$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
18
19.PHONY: help Makefile
20
21# Catch-all target: route all unknown targets to Sphinx using the new
22# "make mode" option.  $(O) is meant as a shortcut for $(SPHINXOPTS).
23%: Makefile
24	./genrst
25	@$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
26