summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorrsiddharth <s@ricketyspace.net>2019-11-01 19:50:09 -0400
committerrsiddharth <s@ricketyspace.net>2019-11-01 19:50:09 -0400
commite166aebb57b8ac583b6d33d894699a91edd8393f (patch)
treef2ffdeb7afd3f2f3fbf7e83e82affe3d0f31bd3e /Makefile
parent43d77db0511f73b72bca13231df778cd4c9f0811 (diff)
Makefile: clean: find and purge __pycache__
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index ac46f1e..23ecbdc 100644
--- a/Makefile
+++ b/Makefile
@@ -44,4 +44,5 @@ build:
clean:
rm -rf build/ dist/ nfsw.egg-info/
+ find ./ -type d -name '__pycache__' -exec rm -rf {} +
.PHONY: clean