summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorFlorent Le Coz <louiz@louiz.org>2014-04-09 22:41:01 +0200
committerFlorent Le Coz <louiz@louiz.org>2014-04-09 22:41:28 +0200
commit9ab0a6d12e16eacbe91742011d00633bed575339 (patch)
treebc124ab6224440f52167373ab8428df48d26bd47 /Makefile
parentd1609b97e4b2f6a34cfa6756a856317b35196603 (diff)
downloadpoezio-9ab0a6d12e16eacbe91742011d00633bed575339.tar.gz
poezio-9ab0a6d12e16eacbe91742011d00633bed575339.tar.bz2
poezio-9ab0a6d12e16eacbe91742011d00633bed575339.tar.xz
poezio-9ab0a6d12e16eacbe91742011d00633bed575339.zip
Make clean removes the build directory containing the .so library
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index bd3b3a05..c380b99c 100644
--- a/Makefile
+++ b/Makefile
@@ -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