Re: Forcing the linking language

2004-10-22 Thread Alexandre Duret-Lutz
>>> "Norman" == Norman Gray <[EMAIL PROTECTED]> writes: [...] Norman> I've managed to get this to work by setting Norman> libfoo_la_SOURCES = dummy.f Norman> where dummy.f is a trivial Fortran routine. Make it nodist_EXTRA_libfoo_la_SOURCES = dummy.f so that the file does not have t

Re: Forcing the linking language

2004-10-18 Thread Norman Gray
Ralf, On 2004 Oct 18 , at 13.17, Ralf Wildenhues wrote: * Norman Gray wrote on Fri, Oct 15, 2004 at 11:19:21PM CEST: I'm assembling a (shared) library using convenience libraries: lib_LTLIBRARIES = libfoo.la libfoo_la_SOURCES = libfoo_la_LIBADD = stuff/libconvenience.la Well. Imagine the following

Re: Forcing the linking language

2004-10-18 Thread Ralf Wildenhues
* Norman Gray wrote on Fri, Oct 15, 2004 at 11:19:21PM CEST: > > Is there any way of indicating to automake which language to use when > linking a library? > > I'm assembling a (shared) library using convenience libraries: > > lib_LTLIBRARIES = libfoo.la > libfoo_la_SOURCES = > libfoo_la_LIBADD

Re: Forcing the linking language

2004-10-17 Thread Alien
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 i have a similar problem with my project, I have to link with libode.la which holds C++ things, and it should contain C prototypes,... but, if i do manually compile with gcc, it fails to link, but with g++ it works, i'd like to make this go automati

Forcing the linking language

2004-10-15 Thread Norman Gray
Greetings. Is there any way of indicating to automake which language to use when linking a library? I'm assembling a (shared) library using convenience libraries: lib_LTLIBRARIES = libfoo.la libfoo_la_SOURCES = libfoo_la_LIBADD = stuff/libconvenience.la Now, libconvenience.la is a convenience lib