Hello, this is about automakes 'created both with libtool and without error'
I know this has been a topic before, but for me the workaround by using different basenames (via gdl_LDFLAGS in this case) does not work. (It stays the same if I c&p the filenames (gdl_SOURCES) expicitely to libgdl_la_SOURCES.) The problem seems to be that automake (1.9.2) does not put different basenames to the files. Why? What am I missing? Thanks, marc Makefile.am: bin_PROGRAMS = gdl gdl_SOURCES = gdl.cpp accessdesc.hpp arrayindex.hpp assocdata.cpp gdl_CFLAGS = $(AM_CFLAGS) lib_LTLIBRARIES = libgdl.la libgdl_la_SOURCES = $(gdl_SOURCES) libgdl_la_CFLAGS = $(AM_CFLAGS)