add swap files to make clean

This commit is contained in:
Bryan Bishop 2013-02-06 17:39:38 -06:00
parent 11abd551d7
commit 25195f9b11
1 changed files with 3 additions and 3 deletions

View File

@ -4,10 +4,10 @@ test:
nosetests-2.7 -s --verbosity=2
clean:
rm -fr build/
rm -fr dist/
rm -fr build dist
rm -fr *.egg-info
find . -type f -name "*.pyc" -exec rm '{}' \;
find . -name *.pyc -exec rm {} \;
find . -name *.swp -exec rm {} \;
install:
python2.7 setup.py install