Hello flopbucket,
* flopbucket wrote on Thu, Apr 12, 2007 at 05:49:12PM CEST:
>
> I am using automake/autoconf/libtool and it works fine
generating
> shared libs, etc. However, I need to make static libs
now and I can't
> see how to tell libtool to do so. I know I can pass
-static but I am
> not using libtool directly, I am using it via
automake.
Try
lib_LTLIBRARIES = libfoo.la
libfoo_la_LDFLAGS = -static
Cheers,
Ralf
|