[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Automake] Including Shared Objects and other files in Makefile.am
From: |
Peter Johansson |
Subject: |
Re: [Automake] Including Shared Objects and other files in Makefile.am |
Date: |
Wed, 03 Oct 2012 18:06:01 +1000 |
User-agent: |
Mozilla/5.0 (X11; Linux x86_64; rv:10.0.7) Gecko/20120825 Thunderbird/10.0.7 |
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 include files using
options [ I ] and [ L ] as
g++ -I /usr/abc/inc -L /usr/dia/lib ...
Add
AM_CPPFLAGS = -I/usr/abc/inc
AM_LDFLAGS = -L/usr/dia/lib
and Automake should do what you expect (hopefully).
HTH,
Peter