From 7780f988bd6a012353798c47f10908eefe6496aa Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Sun, 20 Sep 2015 10:26:37 -0400 Subject: Fix up some documentation links --- Makefile | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 1c31cd4a..9c591688 100644 --- a/Makefile +++ b/Makefile @@ -83,7 +83,9 @@ uninstall: SPHINXBUILD = sphinx-build SPHINXOPTS = -a -E doc -WEBHOME = ~/web/stellated/pages/code/coverage +WEBHOME = ~/web/stellated/ +WEBSAMPLE = $(WEBHOME)/files/sample_coverage_html +WEBSAMPLEBETA = $(WEBHOME)/files/sample_coverage_html_beta docreqs: pip install -r doc/requirements.pip @@ -97,10 +99,11 @@ docspell: $(SPHINXBUILD) -b spelling $(SPHINXOPTS) doc/_spell publish: - rm -f $(WEBHOME)/sample_html/*.* - cp doc/sample_html/*.* $(WEBHOME)/sample_html + rm -f $(WEBSAMPLE)/*.* + mkdir -p $(WEBSAMPLE) + cp doc/sample_html/*.* $(WEBSAMPLE) publishbeta: - rm -f $(WEBHOME)/sample_html_beta/*.* - mkdir -p $(WEBHOME)/sample_html_beta - cp doc/sample_html_beta/*.* $(WEBHOME)/sample_html_beta + rm -f $(WEBSAMPLEBETA)/*.* + mkdir -p $(WEBSAMPLEBETA) + cp doc/sample_html_beta/*.* $(WEBSAMPLEBETA) -- cgit v1.2.1