libtool/bootstrap
Gary V. Vaughan 531c942ce6 * bootstrap: Remove generated files (incase they are links) before
rerunning the autotools to regenerate them.
2001-07-31 02:30:31 +00:00

50 lines
1023 B
Bash
Executable File

#! /bin/sh
# helps bootstrapping libtool, when checked out from CVS
# requires at least GNU autoconf 2.50 and GNU automake1.4-p4
: ${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 ltdldemo 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