Created
October 25, 2010 15:46
-
-
Save 0atman/645170 to your computer and use it in GitHub Desktop.
Simple makefile that cleans a Python project
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
clean: | |
find ./ -name '*~' -exec rm -f {} \; | |
find ./ -name '#*' -exec rm -f {} \; | |
find ./ -name 'Thumbs.db' -exec rm -f {} \; | |
find ./ -name '*.pyc' -exec rm -f {} \; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Sourced from the web2py (web2py.com) makefile, thanks Massimo!