From 63175c5c58e51c0e78a3776fad69cc51f8abd9a9 Mon Sep 17 00:00:00 2001 From: "Dirk-Jan C. Binnema" Date: Tue, 2 Feb 2010 21:51:53 +0200 Subject: [PATCH] * Makefile.am, configure.ac: minor updates --- Makefile.am | 10 +++++----- configure.ac | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Makefile.am b/Makefile.am index 3acaf559..9e943a64 100644 --- a/Makefile.am +++ b/Makefile.am @@ -16,13 +16,13 @@ include $(top_srcdir)/gtest.mk -SUBDIRS=src man +SUBDIRS=man src # so we can say 'make test' check: test cleanupnote cleanupnote: - @echo -e "\nNote: you can remove the mu-test-XXXX dirs in your temp-file dir" + @echo -e "\nNote: you can remove the mu-test- dir in your tempdir" @echo "after 'make check' has finished." tags: @@ -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 40 non-comment lines long, which is a +# this warns about functions that are over 33 non-comment lines long, which is a # sign that they need some refactoring. requires the pmccabe tool. if # all is fine, it outputs nothing -line35: - @pmccabe -c `find -name '*.c' -o -name '*.cc'` | awk '($$5 > 35)' +line33: + @pmccabe -c `find -name '*.c' -o -name '*.cc'` | awk '($$5 > 33)' EXTRA_DIST= \ diff --git a/configure.ac b/configure.ac index 3bbb7edc..23089819 100644 --- a/configure.ac +++ b/configure.ac @@ -14,7 +14,7 @@ ## along with this program; if not, write to the Free Software Foundation, ## Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -AC_INIT([mu],[0.7dev],[http://www.djcbsoftware.nl/code/mu]) +AC_INIT([mu],[0.7beta],[http://www.djcbsoftware.nl/code/mu]) AC_CONFIG_HEADERS([config.h]) AC_CONFIG_SRCDIR([src/mu.cc]) AM_INIT_AUTOMAKE([dist-bzip2])