re-add install target to docs

Fixes https://pagure.io/koji/pull-request/2

Needed this adjustment to the Makefile to avoid breaking the build
This commit is contained in:
Mike McLean 2016-05-06 12:51:10 -04:00
parent aeca12010c
commit 102d325350

View file

@ -10,6 +10,7 @@ BUILDDIR = build
# User-friendly check for sphinx-build
ifeq ($(shell which $(SPHINXBUILD) >/dev/null 2>&1; echo $$?), 1)
$(error The '$(SPHINXBUILD)' command was not found. Make sure you have Sphinx installed, then set the SPHINXBUILD environment variable to point to the full path of the '$(SPHINXBUILD)' executable. Alternatively you can add the directory with the executable to your PATH. If you don't have Sphinx installed, grab it from http://sphinx-doc.org/)
#' <- avoids bad syntax highlighting
endif
# Internal variables.
@ -49,6 +50,11 @@ help:
clean:
rm -rf $(BUILDDIR)/*
# nothing to install for docs, we package from this dir
install:
@echo "(no install for docs dir)"
html:
$(SPHINXBUILD) -b html $(ALLSPHINXOPTS) $(BUILDDIR)/html
@echo