libtool/depdemo
Thomas Tanner e65f46d3fc * use the same header in all configure.in's and Makefile.am's
* NEWS: improved support for BeOS and Cygwin
* TODO: ILD branch was merged, all internal variables and macros
  are now documented
* demo/Makefile.am: use $(LIBS) instead of -lm
* doc/libtool.texi: documented new variable hardcode_into_libs
  and thread_safe_flag_spec, renamed all AM_ENABLE/DISABLE_* macros
  to AC_*, documented AC_DISABLE_FAST_INSTALL and AC_LIBTOOL_DLOPEN
* libltdl/ltdl.c: added two new error messages (cannot_open_error,
  cannot_close_error), use them where approriate,
  BeOS support (thanks to Xavier Pianet), on BeOS search modules
  additionally in ADDON_PATH
* libtool.m4: rewrote AC_CHECK_LIBM: BeOS and Cygwin don't have
  libm and *-ncr-sysv4.3* requires libmw
* ltconfig.in: don't check for LoadLibrary, hardcode dlopen
  configuration for BeOS and Cygwin
* ltmain.in: fix sourcing of .la files on Solaris
  (patch by Raja R Harinath)
1999-03-20 00:27:33 +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 * use the same header in all configure.in's and Makefile.am's 1999-03-20 00:27:33 +00:00
.cvsignore added acinclude.m4 1999-03-14 05:43:03 +00:00
configure.in * use the same header in all configure.in's and Makefile.am's 1999-03-20 00:27:33 +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.