summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDirk-Jan C. Binnema <djcb@djcbsoftware.nl>2010-02-09 21:51:59 +0200
committerDirk-Jan C. Binnema <djcb@djcbsoftware.nl>2010-02-09 21:51:59 +0200
commit46e3037634c6876f60191d7a261e54dc7819db8c (patch)
tree3f7c013992cc3ad04e2891d146d3fde7ec2c3d16
parent97abf6f4f0c84145481e9e664ec903d34a37fa13 (diff)
* Makefile.am: add fixme target, to list all FIXMEs/TODOs
-rw-r--r--Makefile.am9
1 files changed, 7 insertions, 2 deletions
diff --git a/Makefile.am b/Makefile.am
index 3f96f64..b5c24a4 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -28,7 +28,6 @@ cleanupnote:
tags:
gtags
-
# this warns about function that have a cyclomatic complexity of > 10,
# which is a sign that it needs some refactoring. requires the pmccabe
# tool. If all is fine, it outputs nothing
@@ -41,7 +40,13 @@ cc10:
line33:
@$(PMCCABE) -c `find -name '*.c' -o -name '*.cc'` | awk '($$5 > 33)'
+# get all todo/fixme messages
+fixme:
+ @grep -i 'FIXME\|TODO' `find src -type f`
+
+
EXTRA_DIST= \
TODO \
HACKING \
- gtest.mk
+ gtest.mk \
+ NEWS