diff --git a/Makefile b/Makefile new file mode 100644 index 00000000..7233af45 --- /dev/null +++ b/Makefile @@ -0,0 +1,11 @@ +PHONY: all clean test + +all: + python setup.py build_ext --inplace + +clean: + find . -name "*.so" | xargs rm + +test: + nosetests scikits.image +