diff options
| author | Ned Batchelder <ned@nedbatchelder.com> | 2015-09-20 10:26:37 -0400 |
|---|---|---|
| committer | Ned Batchelder <ned@nedbatchelder.com> | 2015-09-20 10:26:37 -0400 |
| commit | 7780f988bd6a012353798c47f10908eefe6496aa (patch) | |
| tree | 7c352f99d504a29c1f14c6d2a805fecae3ecf768 /Makefile | |
| parent | e3f1daf02b9569a5c78f4decb5d6563de0ca3e1b (diff) | |
| download | python-coveragepy-git-7780f988bd6a012353798c47f10908eefe6496aa.tar.gz | |
Fix up some documentation links
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 15 |
1 files changed, 9 insertions, 6 deletions
@@ -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) |
