blob: a58b1f605d748d0996044d019fdc8acb076e4179 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# Note: This is meant for Scilab2Py developer use only
.PHONY: all clean test
export KILL_SCILAB="from scilab2py import kill_scilab; kill_scilab()"
all:
make clean
python setup.py install
clean:
rm -rf build
rm -rf dist
find . -name "*.pyc" -o -name "*.py,cover"| xargs rm -f
python -c $(KILL_SCILAB)
test:
make clean
python setup.py install
cd ~; ipython qtconsole --kernel=scilab
make clean
|