[Automake] Including Shared Objects and other files in Makefile.am

2012-10-06 Thread Sujit Devkar
Dear Sir/Madam, I tried using AM_CPPFLAGS= -I/usr/abc/inc and AM_LDFLAGS= -L/usr/abc/lib, but I get these are directories. Also when I tried using AM_LDFLAGS= /usr/abc/lib/libsrl.so but I get access denies even I am root. My shell script which has e.g. g++ -I/usr/abc/inc -L/usr/abc/lib abc.cpp -l

Re: Including Shared Objects and other files in Makefile.am

2012-10-05 Thread Alberto Luaces
Sujit Devkar writes: > Hi, > I tried using AM_CPPFLAGS= -I/usr/abc/inc and AM_LDFLAGS= > -L/usr/abc/lib, but I get these are directories. > Also when I tried using AM_LDFLAGS= /usr/abc/lib/libsrl.so but I get > access denies even I am root. > > My shell script which has > e.g. g++ -I/usr/abc/inc -

Re: [Automake] Including Shared Objects and other files in Makefile.am

2012-10-05 Thread Sujit Devkar
Hi, I tried using AM_CPPFLAGS= -I/usr/abc/inc and AM_LDFLAGS= -L/usr/abc/lib, but I get these are directories. Also when I tried using AM_LDFLAGS= /usr/abc/lib/libsrl.so but I get access denies even I am root. My shell script which has e.g. g++ -I/usr/abc/inc -L/usr/abc/lib abc.cpp -lsrl -o ab

Re: [Automake] Including Shared Objects and other files in Makefile.am

2012-10-03 Thread Peter Johansson
On 10/03/2012 02:15 PM, Sujit Devkar wrote: Dear Sir/Madam, I am working on a C++ project in which I am trying to use autotools to make my project easy to deploy. I have some .so files in a directory and some other files in different directory. Before using autotools, I had a shell script to i

[Automake] Including Shared Objects and other files in Makefile.am

2012-10-03 Thread Sujit Devkar
Dear Sir/Madam, I am working on a C++ project in which I am trying to use autotools to make my project easy to deploy. I have some .so files in a directory and some other files in different directory. Before using autotools, I had a shell script to include files using options [ I ] and [ L ] a