about summary refs log tree commit diff
path: root/Makefile
diff options
context:
space:
mode:
authorgcmalloc <gcmalloc@gmail.com>2012-09-28 17:57:21 +0200
committergcmalloc <gcmalloc@gmail.com>2012-10-12 20:24:58 +0200
commit434d60cd955ba04c2deb2c40803332235d0077d7 (patch)
treee0a7e777536aed60e775e725fa433649b7af96da /Makefile
parentefe8902f0b354bc43ea36cd09778b1454fbd4bb3 (diff)
downloadyoutube-dl-434d60cd955ba04c2deb2c40803332235d0077d7.tar.gz
youtube-dl-434d60cd955ba04c2deb2c40803332235d0077d7.tar.xz
youtube-dl-434d60cd955ba04c2deb2c40803332235d0077d7.zip
adding clean rule in the makefile
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index c73d0ac65..f52dd1dd6 100644
--- a/Makefile
+++ b/Makefile
@@ -49,4 +49,7 @@ LATEST_VERSION: youtube_dl/__init__.py
 test:
 	nosetests2 test/*
 
-.PHONY: default compile update update-latest update-readme test
+clean:
+	$$(rm **/*.pyc)
+
+.PHONY: default compile update update-latest update-readme test clean