diff --git a/docs/Makefile b/docs/Makefile index d4bb2cb..3c321c8 100644 --- a/docs/Makefile +++ b/docs/Makefile @@ -12,9 +12,15 @@ BUILDDIR = _build help: @$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) -.PHONY: help Makefile +.PHONY: help Makefile man + +man: $(BUILDDIR)/man/nvchecker.1 + +$(BUILDDIR)/man/nvchecker.1: usage.rst + mkdir -p $(BUILDDIR)/man + ./myrst2man.py $< > $@ # 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)