Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit cb57239

Browse files
author
Steve Canny
committed
build: update Makefile to current build process
1 parent 27c3888 commit cb57239

File tree

1 file changed

+4
-8
lines changed

1 file changed

+4
-8
lines changed

Makefile

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ help:
99
@echo "Please use \`make <target>' where <target> is one or more of"
1010
@echo " accept run acceptance tests using behave"
1111
@echo " clean delete intermediate work product and start fresh"
12+
@echo " cleandocs delete intermediate documentation files"
1213
@echo " coverage run nosetests with coverage"
1314
@echo " docs generate documentation"
14-
@echo " readme update README.html from README.rst"
15+
@echo " opendocs open browser to local version of documentation"
1516
@echo " register update metadata (README.rst) on PyPI"
16-
@echo " test run tests using setup.py"
1717
@echo " sdist generate a source distribution into dist/"
1818
@echo " upload upload distribution tarball to PyPI"
1919

@@ -33,18 +33,14 @@ coverage:
3333
docs:
3434
$(MAKE) -C docs html
3535

36-
readme:
37-
rst2html README.rst >README.html
38-
open README.html
36+
opendocs:
37+
open docs/.build/html/index.html
3938

4039
register:
4140
$(SETUP) register
4241

4342
sdist:
4443
$(SETUP) sdist
4544

46-
test:
47-
$(SETUP) test
48-
4945
upload:
5046
$(SETUP) sdist upload

0 commit comments

Comments
 (0)