mirror of
git://git.savannah.gnu.org/libtool.git
synced 2025-01-30 14:30:15 +08:00
e50bee4743
necessary. * Makefile.am (libtool): Reworked rule for regeneration of libtool, now that it is built entirely withing config.status. (libtoolize): Tidied for orthogonality with the other generation rules. (ltconfig): This is now generated by AC_PROG_LIBTOOL, called from make by running config.status --recheck. (ltmain.sh): Moved primary generation of this file into here... * configure.in (AC_OUTPUT): ...instead of here. * libtool.m4 (AC_OUTPUT_COMMANDS): Write the config to ltconfig where it can be reused, rather than directly to libtool. * demo/configure.in: libtool is no longer present immediately after AC_LIBTOOL_M4 has completed, so the tests now grep through ltconfig instead -- which *will* be present.
33 lines
629 B
Bash
Executable File
33 lines
629 B
Bash
Executable File
#! /bin/sh
|
|
|
|
# helps bootstrapping libtool, when checked out from CVS
|
|
# requires GNU autoconf and GNU automake
|
|
|
|
file=Makefile.in
|
|
|
|
rm -f acinclude.m4
|
|
ln -s libtool.m4 acinclude.m4
|
|
# fake the libtool scripts
|
|
touch ltmain.sh
|
|
touch ltconfig
|
|
touch libtoolize
|
|
aclocal
|
|
automake --gnu --add-missing --copy
|
|
autoconf
|
|
|
|
for sub in libltdl demo depdemo mdemo cdemo; do
|
|
cd $sub
|
|
rm -f acinclude.m4
|
|
cat ../libtool.m4 > acinclude.m4
|
|
test "$sub" = libltdl && cat ../ltdl.m4 >> acinclude.m4
|
|
aclocal
|
|
test "$sub" = libltdl && autoheader
|
|
automake --gnits --add-missing
|
|
autoconf
|
|
cd ..
|
|
done
|
|
|
|
rm -f ltmain.sh ltconfig libtoolize
|
|
|
|
exit 0
|