From dbfba45c459aed7606f10a2be0263a1757da5b8c Mon Sep 17 00:00:00 2001 From: Julio Biason Date: Thu, 8 Apr 2010 17:06:05 -0300 Subject: [PATCH] Moved the check to the makefile. --- check | 3 --- makefile | 6 ++++++ 2 files changed, 6 insertions(+), 3 deletions(-) delete mode 100755 check 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