From b14f2ba7f8b4d027654f178dfc8cab9b23e8c13e Mon Sep 17 00:00:00 2001 From: Steven Silvester Date: Sat, 23 Aug 2014 21:30:25 -0500 Subject: Update Makefile --- Makefile | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/Makefile b/Makefile index cdef5f6..8a85f6d 100644 --- a/Makefile +++ b/Makefile @@ -3,8 +3,7 @@ export KILL_SCILAB="from scilab2py import kill_scilab; kill_scilab()" -all: - make clean +all: clean python setup.py install clean: @@ -13,17 +12,15 @@ clean: find . -name "*.pyc" -o -name "*.py,cover"| xargs rm -f python -c $(KILL_SCILAB) -release: - make clean +release: clean pip install wheel python setup.py register python setup.py bdist_wheel upload python setup.py sdist --formats=gztar,zip upload git tag v`python -c "import scilab_kernel;print(scilab_kernel.__version__)"` - git push origin master --all + git push origin --all -test: - make clean +test: clean python setup.py install cd ~; ipython qtconsole --kernel=scilab make clean -- cgit