diff options
-rw-r--r-- | Makefile | 5 | ||||
-rw-r--r-- | tox.ini | 4 |
2 files changed, 5 insertions, 4 deletions
@@ -8,10 +8,9 @@ SPHINXPROJ = GentooPolicyGuide SOURCEDIR = . BUILDDIR = _build -html: - @$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) +all: html -.PHONY: html Makefile +.PHONY: all Makefile # Catch-all target: route all unknown targets to Sphinx using the new # "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS). @@ -5,6 +5,8 @@ skipsdist = True [testenv] deps = sphinx +whitelist_externals = + make commands = - make html + make {posargs:html} |