浏览代码

adding clean rule in the makefile

gcmalloc 13 年之前
父节点
当前提交
434d60cd95
共有 1 个文件被更改,包括 4 次插入1 次删除
  1. 4 1
      Makefile

+ 4 - 1
Makefile

@@ -49,4 +49,7 @@ LATEST_VERSION: youtube_dl/__init__.py
 test:
 test:
 	nosetests2 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