mirror of
git://git.savannah.gnu.org/libtool.git
synced 2024-11-27 06:09:57 +08:00
24 lines
441 B
Bash
24 lines
441 B
Bash
#! /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
|
|
|
|
rm -f acinclude.m4
|
|
ln -s libtool.m4 acinclude.m4
|
|
aclocal
|
|
automake --gnits --add-missing
|
|
autoconf
|
|
|
|
for sub in demo depdemo libltdl mdemo; do
|
|
cd $sub
|
|
rm -f acinclude.m4
|
|
ln -s ../libtool.m4 acinclude.m4
|
|
aclocal
|
|
automake --gnits --add-missing
|
|
autoconf
|
|
cd ..
|
|
done
|
|
|
|
exit 0
|