Re: problem with noinst_LIBRARIES ...

2007-09-24 Thread Ralf Corsepius
On Mon, 2007-09-24 at 10:42 -0400, Roberto Alejandro Espí Muñoz wrote: > Ok, sorry about that, I tried to simplify the example. I really use > much more directories > > elements =\ > main.cpp > > bin_PROGRAMS = programABC > programABC_SOURCES = \ > $(elements) > programABC_L

Re: problem with noinst_LIBRARIES ...

2007-09-24 Thread Roberto Alejandro Espí Muñoz
Ok, sorry about that, I tried to simplify the example. I really use much more directories elements =\ main.cpp bin_PROGRAMS = programABC programABC_SOURCES = \ $(elements) programABC_LDADD = ./directoryA/libdirA.a ./directoryB/libdirB.a./directoryC/libdirC.a AM_CXXFLAGS = A

Re: problem with noinst_LIBRARIES ...

2007-09-24 Thread Ralf Corsepius
On Mon, 2007-09-24 at 10:09 -0400, Roberto Alejandro Espí Muñoz wrote: > I tried using the example shown on the reference document of automake > pertaining the use of per source compiling flags. For it I tried the > noinst_LIBRARIES for creating .a files enclosing my compiled object files > ".o" .

problem with noinst_LIBRARIES ...

2007-09-24 Thread Roberto Alejandro Espí Muñoz
I tried using the example shown on the reference document of automake pertaining the use of per source compiling flags. For it I tried the noinst_LIBRARIES for creating .a files enclosing my compiled object files ".o" . For example : This is my source tree: Makefile.am directoryA/Makefile.am di