libtool/bootstrap

50 lines
1023 B
Plaintext
Raw Normal View History

#! /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}
1999-01-14 17:33:48 +08:00
# fake the libtool scripts
touch ltmain.sh
touch libtoolize
1998-12-20 18:26:52 +08:00
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
1998-12-20 18:26:52 +08:00
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
1998-12-20 18:26:52 +08:00
done
rm -f ltmain.sh libtoolize
1998-12-20 18:26:52 +08:00
exit 0