소스 검색

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:
 	nosetests2 test/*
 
-.PHONY: default compile update update-latest update-readme test
+clean:
+	$$(rm **/*.pyc)
+
+.PHONY: default compile update update-latest update-readme test clean