From c84e9935ecad544a12871fb4e15b4071c42ba5af Mon Sep 17 00:00:00 2001 From: "Dirk-Jan C. Binnema" Date: Thu, 7 Jan 2010 21:52:10 +0200 Subject: [PATCH] * update copyright info; add cc10 cyclomatic complexity check --- Makefile.am | 20 ++++++++++++++++++++ man/Makefile.am | 22 +++++++--------------- src/Makefile.am | 16 ++++++++++++++++ 3 files changed, 43 insertions(+), 15 deletions(-) diff --git a/Makefile.am b/Makefile.am index 1bfdcf48..98f4bf1f 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1 +1,21 @@ +## Copyright (C) 2010 Dirk-Jan C. Binnema +## +## This program is free software; you can redistribute it and/or modify +## it under the terms of the GNU General Public License as published by +## the Free Software Foundation; either version 3 of the License, or +## (at your option) any later version. +## +## This program is distributed in the hope that it will be useful, +## but WITHOUT ANY WARRANTY; without even the implied warranty of +## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +## GNU General Public License for more details. +## +## You should have received a copy of the GNU General Public License +## along with this program; if not, write to the Free Software Foundation, +## Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + SUBDIRS=src + +# calculate the cyclomatic-complexity, which should not go over 10 +cc10: + @pmccabe `find -name '*.c'` | sort -nr | awk '($$1 > 10)' diff --git a/man/Makefile.am b/man/Makefile.am index 3b37672a..3b9597ad 100644 --- a/man/Makefile.am +++ b/man/Makefile.am @@ -1,9 +1,9 @@ -## Copyright (C) 2008 Dirk-Jan C. Binnema +## Copyright (C) 2010 Dirk-Jan C. Binnema ## -## This program is free software; you can redistribute it and/or modify it -## under the terms of the GNU General Public License as published by the -## Free Software Foundation; either version 3, or (at your option) any -## later version. +## This program is free software; you can redistribute it and/or modify +## it under the terms of the GNU General Public License as published by +## the Free Software Foundation; either version 3 of the License, or +## (at your option) any later version. ## ## This program is distributed in the hope that it will be useful, ## but WITHOUT ANY WARRANTY; without even the implied warranty of @@ -12,17 +12,9 @@ ## ## You should have received a copy of the GNU General Public License ## along with this program; if not, write to the Free Software Foundation, -## Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. - -include $(top_srcdir)/gtest.mk +## Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. man_MANS= \ - mu-find.1 \ - mu-index.1 \ - mu-mkmdir.1 \ - mu-msginfo.1 \ - mu.7 \ - mu.conf.5 \ - mu-bookmarks.conf.5 + mu.1 dist_man_MANS = $(man_MANS) diff --git a/src/Makefile.am b/src/Makefile.am index edda38b8..541da2ab 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -1,3 +1,19 @@ +## Copyright (C) 2010 Dirk-Jan C. Binnema +## +## This program is free software; you can redistribute it and/or modify +## it under the terms of the GNU General Public License as published by +## the Free Software Foundation; either version 3 of the License, or +## (at your option) any later version. +## +## This program is distributed in the hope that it will be useful, +## but WITHOUT ANY WARRANTY; without even the implied warranty of +## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +## GNU General Public License for more details. +## +## You should have received a copy of the GNU General Public License +## along with this program; if not, write to the Free Software Foundation, +## Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + INCLUDES=$(XAPIAN_CXXFLAGS) $(GMIME_CFLAGS) $(GLIB_CFLAGS) bin_PROGRAMS= \