libtool/autogen
Thomas Tanner 01e414be0d * TODO: updated
* autogen: only libltdl needs autoheader
* doc/libtool.texi (link mode): documented -export-symbols-regex
  and updated -export-symbols
* doc/libtool.texi (script contents): documented
  always_export_symbols, export_symbols_cmd, exclude_expsyms,
  include_expsyms, dlopen and dlopen_self
  more detailed description of need_lib_prefix
* ltconfig.in: a "'" was missing in the default value
  of export_symbols_cmd
* ltmain.in: implemented -export-symbols-regex
1999-02-18 11:38:36 +00:00

30 lines
593 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
# fake the libtool scripts
touch ltconfig
touch ltmain.sh
touch libtoolize
aclocal
automake --gnits --add-missing
autoconf
for sub in demo depdemo libltdl mdemo cdemo; do
cd $sub
rm -f acinclude.m4
cp ../libtool.m4 acinclude.m4
aclocal
test "$sub" = libltdl && autoheader
automake --gnits --add-missing
autoconf
cd ..
done
rm -f ltconfig ltmain.sh libtoolize
exit 0