libtool/depdemo
Thomas Tanner 3e89f4c492 * doc/libtool.texi: fixed a typo
* libtoolize.in: add the libtool scripts to libltdl.tar.gz
* libtool.m4: don't AC_SUBST(USE_SYMBOL_UNDERSCORE),
  AC_CHECK_LIBM sets LIBM, AC_LIBLTDL_INSTALLABLE doesn't work
  when libltdl is already installed
* *demo/Makefile.am: use LIBM
* *demo/configure.in: AC_SUBST LIBM
* libltdl/configure.in: use ac_cv_sys_symbol_underscore instead of
  USE_SYMBOL_UNDERSCORE
* ltconfig.in: added link_all_deplibs variable
* doc/libtool.texi: document it
* ltmain.in: always search for libname.la - don't eval libname_spec,
  when linking libraries against static ones just print a warning
  and add them to dependency_libs, add -lc before deplibs,
  always link all dependencies of a static library or if
  link_all_deplibs is yes, hardcode library paths if
  hardcode_into_libs is no, don't link against dependency_libs
  that already are deplibs
1999-03-30 19:22:41 +00:00
..
l1 * use the same header in all configure.in's and Makefile.am's 1999-03-20 00:27:33 +00:00
l2 * use the same header in all configure.in's and Makefile.am's 1999-03-20 00:27:33 +00:00
l3 * use the same header in all configure.in's and Makefile.am's 1999-03-20 00:27:33 +00:00
l4 * doc/libtool.texi: fixed a typo 1999-03-30 19:22:41 +00:00
.cvsignore added acinclude.m4 1999-03-14 05:43:03 +00:00
configure.in * doc/libtool.texi: fixed a typo 1999-03-30 19:22:41 +00:00
main.c updated depdemo 1999-03-13 17:41:49 +00:00
Makefile.am * use the same header in all configure.in's and Makefile.am's 1999-03-20 00:27:33 +00:00
README Initial revision 1998-11-24 20:32:39 +00:00
sysdep.h *** empty log message *** 1998-12-31 11:25:57 +00:00

This is depdemo, an example package that uses GNU libtool with an
Automake-generated environment to build many interdependent libraries
and a test program.

There are four libraries: l1, l2, l3 and l4.
l1 depends on nothing.
l2 depends on l1.
l3 depends on l1 and l2.
l4 depends on l3 and libm.

The test program uses l1, l2 and l4.