summaryrefslogtreecommitdiff
path: root/Makefile.am
diff options
context:
space:
mode:
authorDirk-Jan C. Binnema <djcb@djcbsoftware.nl>2010-01-31 23:55:22 +0200
committerDirk-Jan C. Binnema <djcb@djcbsoftware.nl>2010-01-31 23:55:22 +0200
commitfe3aa7772afccc7bc4f791c79099050fc72acaa9 (patch)
tree027ea75686789b0dfba6425fa09d497d36904eb5 /Makefile.am
parenta3abc73065fc86b33c5f219d83470e6df0b3d947 (diff)
* mu_msg_gmime: refactor part_to_string; set function line number check to < 40
Diffstat (limited to 'Makefile.am')
-rw-r--r--Makefile.am6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile.am b/Makefile.am
index e296826..6087e24 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -34,11 +34,11 @@ tags:
cc10:
@pmccabe `find -name '*.c' -o -name '*.cc'` | sort -nr | awk '($$1 > 10)'
-# this warns about functions that are over 30 non-comment lines long, which is a
+# 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
-line30:
- @pmccabe -c `find -name '*.c' -o -name '*.cc'` | sort -nr | awk '($$5 > 30)'
+line40:
+ @pmccabe -c `find -name '*.c' -o -name '*.cc'` | awk '($$5 > 40)'