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
|
|
|
|
* configure.in (AC_CONFIG_SUBDIRS): added cdemo
* Makefile.am (DIST_SUBDIRS): ditto
(ACINCLUDE_M4_LIST): ditto
* tests/Makefile.am (TESTS): added cdemo-shared.test
* tests/cdemo-static.test: disable shared libraries here
* tests/cdemo-shared.test: disable static libraries here
* doc/libtool.texi (Test descriptions): added cdemo tests
* THANKS: added Edouard G. Parmelan
1999-01-13 Edouard G. Parmelan <Edouard.Parmelan@France.NCR.COM>
* ltmain.in: fix convenience libraries when static libraries
are disables.
* cdemo/README, cdemo/Makefile.am, cdemo/configure.in, cdemo/foo.h,
cdemo/foo1.c, cdemo/main.c, cdemo/.cvsignore, test/cdemo-conf.test,
test/cdemo-make.test, test/cdemo-exec.test, test/cdemo-static.test:
new tests for convenience libraries.
* autogen, Makefile.am, test/Makefile.am: ditto.
* ltconfig.in, doc/PLATFORMS: Added support for NCR MP-RAS
(i586-ncr-sysv4.3*) with native compiler.
* README, doc/libtool.texi: Added note for NCR MP-RAS compiler.
1999-01-13 16:28:35 +08:00
|
|
|
for sub in demo depdemo libltdl mdemo cdemo; do
|
1998-12-20 18:26:52 +08:00
|
|
|
cd $sub
|
|
|
|
rm -f acinclude.m4
|
1999-01-14 23:07:12 +08:00
|
|
|
cp ../libtool.m4 acinclude.m4
|
1998-12-20 18:26:52 +08:00
|
|
|
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
|