mirror of
git://git.savannah.gnu.org/libtool.git
synced 2024-11-21 01:40:57 +08:00
531c942ce6
rerunning the autotools to regenerate them.
50 lines
1023 B
Bash
Executable File
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
|