Re: libtool question

2006-05-01 Thread Ralf Wildenhues
* Bob Friesenhahn wrote on Tue, May 02, 2006 at 04:21:34AM CEST: > > cgdb_LDADD = $(top_srcdir)/lib/gdbmi/src/libgdbmi.la I guess you meant cgdb_LDADD = $(top_builddir)/lib/gdbmi/src/libgdbmi.la but really unless you are writing a Makefile.am snippet to be included into several Makefile.am's a

Re: libtool question

2006-05-01 Thread Bob Friesenhahn
On Mon, 1 May 2006, Bob Rossi wrote: gdbmi used to use AC_PROG_RANLIB. By doing this, it would create a libgdbmi.a and the CGDB package would do cgdb_LDFLAGS = \ -L$(top_builddir)/lib/gdbmi/src cgdb_DEPENDENCIES = \ $(top_srcdir)/lib/gdbmi/src cgdb_LDADD = ... -lgdbmi ... My first question i

libtool question

2006-05-01 Thread Bob Rossi
Hi, I have a project called CGDB that uses a library from another project called gdbmi. The gdbmi project only creates a library. The two projects are packaged together and look like cgdb/ cgdb/lib/gdbmi/ where cgdb/ has all the stuff for cgdb and cgdb/lib/gdbmi/ is all the stuff for the gdb