diff --git a/check b/check deleted file mode 100755 index c6b1c89..0000000 --- a/check +++ /dev/null @@ -1,3 +0,0 @@ -#!/bin/sh -find . -name '*.py' -exec pyflakes {} \; -python utils/pep8.py --filename=*.py --repeat . diff --git a/makefile b/makefile index 74deaa4..ba05013 100644 --- a/makefile +++ b/makefile @@ -7,3 +7,9 @@ doc: pot: xgettext --language=Python --keyword=_ --keyword=N_ --output=i18n/mitter.pot mitter mitterlib/ui/ui_pygtk.py mitterlib/network/twitter.py + +check: + find . -name '*.py' -exec pyflakes {} \; + python utils/pep8.py --filename=*.py --repeat . + +.PHONY: check pot doc deb