Hi, I have a library, which builds libtool-modules. I wonder, why automake builds static libraries at all for them. These *.a-files are pretty useless, because modules can't be linked at all. Libraries must have the lib-prefix to be linkable, but modules don't.
Here is what I have in my Makefile.am: lib_LTLIBRARIES = tntdb-postgresql.la tntdb_postgresql_la_SOURCES = $(sources) tntdb_postgresql_la_LDFLAGS = @PG_LDFLAGS@ -module -version-info @sonumber@ Tommi