* Makefile.am: line40=>line35. decrease max amount of lines in a function

This commit is contained in:
Dirk-Jan C. Binnema 2010-02-02 08:44:44 +02:00
parent fe3aa7772a
commit 64246329f5
1 changed files with 2 additions and 3 deletions

View File

@ -37,9 +37,8 @@ cc10:
# this warns about functions that are over 40 non-comment lines long, which is a
# sign that they need some refactoring. requires the pmccabe tool. if
# all is fine, it outputs nothing
line40:
@pmccabe -c `find -name '*.c' -o -name '*.cc'` | awk '($$5 > 40)'
line35:
@pmccabe -c `find -name '*.c' -o -name '*.cc'` | awk '($$5 > 35)'
EXTRA_DIST= \