[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: makedepend and automake
From: |
Salvatore_D'Angelo |
Subject: |
Re: makedepend and automake |
Date: |
Tue, 24 Jul 2001 09:35:21 +0200 |
Hi Tom,
I already turned off the dependencies, the problem is that now I created a
script where I do the following thing:
aclocal
autoconf
automake -a
./configure
makedepend <some flags> *.cpp
the problem is that I would like to integrate the makedepend command inside
Makefile.am (if it is possible) because my files are compiled with some
options and if in the future I change one of them I should change also the
script.
Instead I want do the following thing in Makefile.am
bin_PROGRAMS = prova
prova_SOURCES = A.cpp B.cpp
CXXFLAGS = <some options>
³how you can see below I already turned off the dependencies
AUTOMAKE_OPTIONS = no-dependencies
³here I would like to add the makedepend command using the variable
CXXFLAGS for the options
makedepend ....
in this way if an option change I should change just the CXXFLAGS variable
How I can do that?
Please can you tell me if there is a mail list where I can submit this kind
of problems? If so, can you tell me also how I can subscribe to it?
Thanks for your help!!!
Tom Tromey <address@hidden> on 07/23/2001 09:20:31 PM
Please respond to address@hidden
To: address@hidden
cc: address@hidden
Subject: Re: makedepend and automake
>>>>> ">" == sdangelo <address@hidden> writes:
>> I have the following problem.
>> I am creating a build process on OS/390 and the compiler in this
>> platform does not support the option Wp to calculate the dependencies.
With automake 1.4 then dependency tracking won't work without gcc.
Just turn it off and do the tracking manually.
Tom