Make clean removes the build directory containing the .so library

This commit is contained in:
Florent Le Coz 2014-04-09 22:41:01 +02:00
parent d1609b97e4
commit 9ab0a6d12e

View file

@ -15,7 +15,8 @@ clean:
find ./ -name \*.pyo -delete
find ./ -name \*~ -delete
find ./ -name "#*#" -delete
rm -r doc/build/
rm -rf doc/build/
rm -rf build
install: all
python3 setup.py install --root=$(DESTDIR) --optimize=1