summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorrsiddharth <rsd@gnu.org>2016-03-05 21:45:26 -0500
committerrsiddharth <rsd@gnu.org>2016-03-05 21:45:26 -0500
commitc18b8bca8f9e46871d013f7363802d3055a7ebf6 (patch)
tree4eab90aa05be699f3756dcd65581b220cba4209f /Makefile
parente936e1e74b1cabb36db9e71408b44a3bb1e826e6 (diff)
Makefile: updated `clean-venv`
Added command to delete `man/` directory.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 1761089..e38cf27 100644
--- a/Makefile
+++ b/Makefile
@@ -38,11 +38,11 @@ clean-build:
clean-pyc:
@find . -name '*.pyc' -exec rm -f {} +
-
clean-venv:
@rm -rf bin/
@rm -rf include/
@rm -rf lib/
@rm -rf local/
+ @rm -rf man/
.PHONY: dist clean-build upload build-dist egg clean-pyc clean-venv