* Makefile.am, mug-msg-list-view.c: fix line33 test

This commit is contained in:
Dirk-Jan C. Binnema
2010-11-24 20:03:00 +02:00
parent f59ac88118
commit a5b913e66c
2 changed files with 3 additions and 5 deletions

View File

@ -33,7 +33,7 @@ tags:
# tool. If all is fine, it outputs nothing
cc10:
@$(PMCCABE) `find -name '*.c' -o -name '*.cc'` \
| grep -v mu-msg-str-normalize.c \
| grep -v mu-str-normalize.c \
| sort -nr | awk '($$1 > 10)'
# this warns about functions that are over 33 non-comment lines long, which is a
@ -42,7 +42,7 @@ cc10:
# note, mu_msg_str_normalize is excempted from this rule.
line33:
@$(PMCCABE) -c `find -name '*.c' -o -name '*.cc'` \
| grep -v mu-msg-str-normalize.c \
| grep -v mu-str-normalize.c \
| awk '($$5 > 33)'
# get all todo/fixme messages