Hi Marc, * Marc wrote on Mon, Jun 13, 2005 at 12:38:41PM CEST: > > 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.)
You mean it does not work with `gdl_CFLAGS'. Well, you should be using `gdl_CXXFLAGS' for C++ sources. Regards, Ralf > 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)