mirror of
git://git.savannah.gnu.org/libtool.git
synced 2024-12-21 06:59:11 +08:00
1c0ec8cf1c
multi-language-branch. * configure.in: Added pdemo and tagdemo to CONF_SUBDIRS and merged references to CXX and GCJ from multi-language-branch. *pdemo: Added test directory from multi-language-branch. *tagdemo: Added test directory from multi-language-branch. *tests/Makefile.am: Merged additional tests from multi-language-branch. *tests/pdemo-*.test: ditto. *tests/tagdemo-*.test: ditto.
38 lines
763 B
Bash
Executable File
38 lines
763 B
Bash
Executable File
#! /bin/sh
|
|
|
|
# helps bootstrapping libtool, when checked out from CVS
|
|
# requires GNU autoconf and GNU automake
|
|
|
|
file=Makefile.in
|
|
|
|
: ${ACLOCAL=aclocal}
|
|
: ${AUTOMAKE=automake}
|
|
: ${AUTOCONF=autoconf}
|
|
: ${AUTOHEADER=autoheader}
|
|
|
|
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 tagdemo pdemo; do
|
|
cd $sub
|
|
rm -f acinclude.m4 Makefile
|
|
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 Makefile
|
|
|
|
exit 0
|