Hi,
for shared libraries, it is possible to use myshared_so_LDFLAGS = -module to tell automake not to warn about the missing "lib" prefix. For static libraries however, something like that does not work since there is no ld involved, and automake warns about the missing lib prefix. Is there a flag I can use to silence the warning anyway? I am only going to use the library within the project itself anyway (noinst_LIBRARIES).