mirror of
https://github.com/wassname/scikit-image.git
synced 2026-06-27 21:53:30 +08:00
12 lines
139 B
Makefile
12 lines
139 B
Makefile
.PHONY: all clean test
|
|
|
|
all:
|
|
python setup.py build_ext --inplace
|
|
|
|
clean:
|
|
find . -name "*.so" | xargs rm
|
|
|
|
test:
|
|
nosetests scikits.image
|
|
|