Re: Problem with += and target-specific variables

2000-08-15 Thread Paul D. Smith
This is known bug PR/1831. See the README, etc. for information on accessing the online bug database for GNU make. -- --- Paul D. Smith <[EMAIL PROTECTED]> Find some GNU make tips at: http://www.gnu.org

Problem with += and target-specific variables

2000-08-15 Thread John O'Donovan
Hi, I have found a problem with the latest 3.79.1 code. It seems that += does not work as it did in 3.77. With the following GNUmakefile, force : foo := a force : foo += b force : @echo "foo in the 'force' rule should be 'a b'" @echo "foo in the 'force' rule is'$(

Re: Target specific includes

2000-08-15 Thread Reid Madsen
I used the MAKEGOALCMDS variable to accomplish this. Thanks Reid > X-Authentication-Warning: lemming.engeast: psmith set sender to >[EMAIL PROTECTED] using -f > MIME-Version: 1.0 > Content-Type: text/plain; charset=us-ascii > Content-Transfer-Encoding: 7bit > Date: Tue, 15 Aug 2000 03:1

Re: Target specific includes

2000-08-15 Thread Paul D. Smith
%% Reid Madsen <[EMAIL PROTECTED]> writes: rm> It would be nice if there were such a thing as conditional includes. rm> For example: rm> depend:: -include dependencies rm> Then in the case where the dependencies file has an error, the rm> dependencies file would not be included when