libtool/bootstrap
Gary V. Vaughan aac7f0777e * bootstrap: Cleanup autom4te' and libtool' so that we don't
get caught by something from a previous build.
2001-09-08 03:06:31 +00:00

52 lines
1.1 KiB
Bash
Executable File

#! /bin/sh
# helps bootstrapping libtool, when checked out from CVS
# requires at least GNU autoconf 2.50 and GNU automake1.4-p5
find . \( -name autom4te.cache -o -name libtool \) -print | xargs rm -r
: ${ACLOCAL=aclocal}
: ${AUTOMAKE=automake}
: ${AUTOCONF=autoconf}
: ${AUTOHEADER=autoheader}
# fake the libtool scripts
touch ltmain.sh
touch libtoolize
for sub in . libltdl cdemo demo depdemo mdemo pdemo tagdemo; do
case $sub in
.)
top_srcdir=.
acfiles="$top_srcdir/libtool.m4"
AUTOMAKE_FLAGS="--gnu --add-missing --copy"
;;
libltdl)
top_srcdir=..
acfiles="$top_srcdir/libtool.m4 $top_srcdir/ltdl.m4"
AUTOMAKE_FLAGS="--gnits --add-missing"
;;
*)
top_srcdir=..
acfiles="$top_srcdir/libtool.m4"
AUTOMAKE_FLAGS="--gnits --add-missing"
;;
esac
cd $sub
rm -f acinclude.m4 aclocal.m4 Makefile configure
for file in $acfiles; do
cat $file >> ./acinclude.m4
done
$ACLOCAL
test $sub = libltdl && $AUTOHEADER
eval $AUTOMAKE $AUTOMAKE_FLAGS
$AUTOCONF
cd $top_srcdir
done
rm -f ltmain.sh libtoolize
exit 0