libtool/depdemo
Alexandre Oliva 2e6d9dc7a7 * libtool.m4 (AC_CHECK_LIBM): do not set MATHLIB or AC_SUBST it,
this has a negative side-effect of causing automake to add MATHLIB
to every single Makefile.  Let's use plain AC_CHECK_LIB, so that
LIBS get set, until we find a better alternative
* *demo/Makefile.am: remove $(MATHLIB)
1999-02-14 03:04:51 +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 * libtool.m4 (AC_CHECK_LIBM): do not set MATHLIB or AC_SUBST it, 1999-02-14 03:04:51 +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.