summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile11
1 files 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