Re: passing -R to libtool

2007-04-03 Thread Ralf Wildenhues
Hello Dave, * deckrider wrote on Wed, Apr 04, 2007 at 01:47:45AM CEST: > > Given that I don't know where a user has installed prerequisite > libraries, I assume the user can pass their location using LDFLAGS. > For instance: > > ./configure LDFLAGS="-L/my/path/to/the/lib" > > However, for

passing -R to libtool

2007-04-03 Thread deckrider
I'm using: automake (GNU automake) 1.10 autoconf (GNU Autoconf) 2.61 ltmain.sh (GNU libtool) 1.5.22 (1.1220.2.365 2005/12/18 22:14:06) Given that I don't know where a user has installed prerequisite libraries, I assume the user can pass their location using LDFLAGS. For instance: ./configure LD

Re: Placing libraries in single central directory

2007-04-03 Thread Ralf Wildenhues
Hello Antoon, * antoon wrote on Tue, Apr 03, 2007 at 09:44:19AM CEST: > > lib_LIBRARIES = libarea.a > # Language: C language > libarea_a_SOURCES = checkdep.c \ > drawdept.c \ > drawgleg.c > By default this library is placed in the same directory

Placing libraries in single central directory

2007-04-03 Thread antoon
Hi, As a newbie in Automake, I succeeded in generating a library *libarea.a* from some simple C-files, by include $(top_srcdir)/common.am lib_LIBRARIES = libarea.a # Language: C language libarea_a_SOURCES = checkdep.c \ drawdept.c \ drawgleg.c