From: gcmalloc Date: Fri, 28 Sep 2012 15:57:21 +0000 (+0200) Subject: adding clean rule in the makefile X-Git-Url: http://git.bitcoin.ninja/index.cgi?p=youtube-dl;a=commitdiff_plain;h=434d60cd955ba04c2deb2c40803332235d0077d7 adding clean rule in the makefile --- 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