1998-11-02 16:34:05 +08:00
|
|
|
#! /bin/sh
|
|
|
|
|
|
|
|
# helps bootstrapping libtool, when checked out from CVS
|
|
|
|
# requires GNU autoconf and GNU automake
|
|
|
|
# this is not meant to go into the distributions
|
|
|
|
|
1998-12-20 18:26:52 +08:00
|
|
|
rm -f acinclude.m4
|
|
|
|
ln -s libtool.m4 acinclude.m4
|
1999-01-14 17:33:48 +08:00
|
|
|
# fake the libtool scripts
|
|
|
|
touch ltconfig
|
|
|
|
touch ltmain.sh
|
|
|
|
touch libtoolize
|
1999-01-15 04:07:09 +08:00
|
|
|
aclocal
|
1999-05-23 18:03:23 +08:00
|
|
|
automake --gnu --add-missing
|
1999-01-15 04:07:09 +08:00
|
|
|
autoconf
|
1998-12-20 18:26:52 +08:00
|
|
|
|
1999-12-16 19:40:16 +08:00
|
|
|
for sub in libltdl demo depdemo mdemo cdemo; do
|
1998-12-20 18:26:52 +08:00
|
|
|
cd $sub
|
|
|
|
rm -f acinclude.m4
|
1999-12-16 19:40:16 +08:00
|
|
|
cat ../libtool.m4 > acinclude.m4
|
|
|
|
case "$sub" in libltdl) cat ../ltdl.m4 >> acinclude.m4 ;; esac
|
|
|
|
aclocal
|
1999-02-18 19:38:36 +08:00
|
|
|
test "$sub" = libltdl && autoheader
|
1998-12-20 18:26:52 +08:00
|
|
|
automake --gnits --add-missing
|
|
|
|
autoconf
|
|
|
|
cd ..
|
|
|
|
done
|
1999-05-21 01:54:09 +08:00
|
|
|
|
1999-01-14 17:33:48 +08:00
|
|
|
rm -f ltconfig ltmain.sh libtoolize
|
1998-12-20 18:26:52 +08:00
|
|
|
|
1998-11-02 16:34:05 +08:00
|
|
|
exit 0
|