make `make man` work

[skip ci]
This commit is contained in:
lilydjwg 2020-10-05 12:26:48 +08:00
parent ccae7d8fcf
commit 7d4b2daa65
1 changed files with 8 additions and 2 deletions

View File

@ -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)