libtool/depdemo
Thomas Tanner 6d34bd85f0 * *demo/Makefile.am: use $(MATHLIB)
* *demo/configure.in: use AC_CHECK_LIBM
* doc/libtool.texi: renamed file_magic_command to file_magic_cmd,
  renamed archive_sym_cmds to archive_expsym_cmds
* ltconfig.in: ditto
* ltmain.in: ditto
* libltdl/ltdl.c: use lt_dlmalloc/free
* libltdl/ltdl.h: define lt_dlmalloc/free
* libtool.m4: added AC_CHECK_LIBM macro
* ltconfig.in: renamed archive_sym_cmds to archive_expsym_cmds,
  added always_export_symbols, export_symbols_cmd, exclude_expsyms,
  include_expsyms, removed archive_cmds for cygwin/mingw and AIX,
  on Solaris store the exported symbols list in objdir
* ltmain.in: allow -export-symbols for modules, use thread_safe flag,
  add include_expsyms to the exported symbols
1999-02-13 15:43:04 +00:00
..
.cvsignore *** empty log message *** 1998-12-25 10:39:59 +00:00
configure.in * *demo/Makefile.am: use $(MATHLIB) 1999-02-13 15:43:04 +00:00
l1.c *** empty log message *** 1998-12-31 11:25:57 +00:00
l1.h *** empty log message *** 1998-12-31 11:25:57 +00:00
l2.c *** empty log message *** 1998-12-31 11:25:57 +00:00
l2.h *** empty log message *** 1998-12-31 11:25:57 +00:00
l3.c *** empty log message *** 1998-12-31 11:25:57 +00:00
l3.h *** empty log message *** 1998-12-31 11:25:57 +00:00
l4.c *** empty log message *** 1999-01-09 09:51:44 +00:00
l4.h *** empty log message *** 1998-12-31 11:25:57 +00:00
main.c *** empty log message *** 1998-12-31 11:25:57 +00:00
Makefile.am * *demo/Makefile.am: use $(MATHLIB) 1999-02-13 15:43:04 +00:00
README
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.