From 46e3037634c6876f60191d7a261e54dc7819db8c Mon Sep 17 00:00:00 2001 From: "Dirk-Jan C. Binnema" Date: Tue, 9 Feb 2010 21:51:59 +0200 Subject: [PATCH] * Makefile.am: add fixme target, to list all FIXMEs/TODOs --- Makefile.am | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/Makefile.am b/Makefile.am index 3f96f64a..b5c24a40 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