summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorrsiddharth <rsd@gnu.org>2016-03-05 21:43:51 -0500
committerrsiddharth <rsd@gnu.org>2016-03-05 21:43:51 -0500
commite936e1e74b1cabb36db9e71408b44a3bb1e826e6 (patch)
tree323f9a9b8b5bf06d9c51dc67b88af326a0bc4361 /Makefile
parent8111090259fece2e17289b7a92f8234123218b88 (diff)
Makefile: Added `clean-venv`
Purges the mess created by `virtualenv`.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 7 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index fba5e52..1761089 100644
--- a/Makefile
+++ b/Makefile
@@ -38,5 +38,11 @@ clean-build:
clean-pyc:
@find . -name '*.pyc' -exec rm -f {} +
-.PHONY: dist clean-build upload build-dist egg clean-pyc
+clean-venv:
+ @rm -rf bin/
+ @rm -rf include/
+ @rm -rf lib/
+ @rm -rf local/
+
+.PHONY: dist clean-build upload build-dist egg clean-pyc clean-venv