summaryrefslogtreecommitdiffstats
path: root/autogen
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1999-04-12 15:41:33 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1999-04-12 15:41:33 +0000
commit8cdb582b49c1528216cfd316183536735474c899 (patch)
tree88c7168b08ee935044266ff9a4c3b4b6d060d517 /autogen
parentAdded line to initialize timer_max. (diff)
downloadrtems-8cdb582b49c1528216cfd316183536735474c899.tar.bz2
Patch from Ralf Corsepius <corsepiu@faw.uni-ulm.de>:
This patch addresses a few minor issues and contains a few (minor) preparations for automake. * configure.in: Fix for handing c/src/tests subdirectory handling (FIX) * aclocal/rtems-top.m4: + Add TARGET_SUBDIR and --with-target-subdir (preparation of future enhancements for cross-compiling) + Activate RTEMS_ROOT handling (automake preparation) * automake/*.am: replace comments "#" with "##" so that comments won't get included into Makefile.in's anymore * c/update-tools/* automake support (NEW) * ./autogen update/enhancement (cf. ./autogen for details) After applying this patch please run: ./autogen cvs add c/update-tools/configure.in cvs add c/update-tools/Makefile.am cvs add c/update-tools/aclocal.m4
Diffstat (limited to 'autogen')
-rw-r--r--autogen66
1 files changed, 53 insertions, 13 deletions
diff --git a/autogen b/autogen
index ad3b67ff8b..0e768388ab 100644
--- a/autogen
+++ b/autogen
@@ -13,8 +13,9 @@
# source tree
progname=`basename $0`
-am_verbose="";
+verbose="";
quiet="false"
+mode="generate"
usage()
{
@@ -25,6 +26,7 @@ usage()
echo " -h .. display this message and exit";
echo " -q .. quiet, don't display directories";
echo " -v .. verbose, pass -v to automake when invoking automake"
+ echo " -c .. clean, remove all aclocal/autoconf/automake generated files"
echo
exit 1;
}
@@ -45,6 +47,9 @@ case $1 in
-v|--ve|--ver|--verb|--verbo|--verbos|--verbose)
verbose="-v";
shift;;
+-c|--cl|--cle|--clea|--clean)
+ mode="clean";
+ shift;;
-*) echo "unknown option $1" ;
usage ;;
*) echo "invalid parameter $1" ;
@@ -53,16 +58,51 @@ esac
done
pwd=`pwd`;
-confs=`find $pwd -name 'configure.in' -print`
-aclocal_dir=$pwd/aclocal
-for i in $confs; do
-dir=`dirname $i`;
-( test "$quiet" = "true" || echo "$dir";
- cd $dir;
- aclocal -I $aclocal_dir;
- autoconf;
- test -n "`grep CONFIG_HEADER configure.in`" && autoheader ;
- test -f Makefile.am && automake $verbose ;
-)
-done
+case $mode in
+generate)
+ confs=`find $pwd -name 'configure.in' -print`
+ aclocal_dir=$pwd/aclocal
+ for i in $confs; do
+ dir=`dirname $i`;
+ ( test "$quiet" = "true" || echo "$dir";
+ cd $dir;
+ aclocal -I $aclocal_dir;
+ autoconf;
+ test -n "`grep CONFIG_HEADER configure.in`" && autoheader ;
+ test -f Makefile.am && automake $verbose ;
+ )
+ done
+ ;;
+clean)
+ test "$quiet" = "true" || echo "removing automake generated Makefile.in files"
+ files=`find . -name 'Makefile.am' -print | sed -e 's%\.am%\.in%g'` ;
+ for i in $files; do if test -f $i; then
+ rm -f $i
+ test "$verbose" = "-v" && echo "$i"
+ fi; done
+
+ test "$quiet" = "true" || echo "removing configure files"
+ files=`find . -name 'configure' -print` ;
+ test "$verbose" = "-v" && test -n "$files" && echo "$files" ;
+ for i in $files; do if test -f $i; then
+ rm -f $i
+ test "$verbose" = "-v" && echo "$i"
+ fi; done
+
+ test "$quiet" = "true" || echo "removing aclocal.m4 files"
+ files=`find . -name 'aclocal.m4' -print` ;
+ test "$verbose" = "-v" && test -n "$files" && echo "$files" ;
+ for i in $files; do if test -f $i; then
+ rm -f $i
+ test "$verbose" = "-v" && echo "$i"
+ fi; done
+
+ find . -name '*~' -print | xargs rm -f
+ find . -name '*.orig' -print | xargs rm -f
+ find . -name '*.rej' -print | xargs rm -f
+ find . -name 'config.status' -print | xargs rm -f
+ find . -name 'config.log' -print | xargs rm -f
+ find . -name '.deps' -print | xargs rm -rf
+ ;;
+esac