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
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
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" .
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