[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Chnaging MAKEFLAGS
From: |
Boris Kolpackov |
Subject: |
Re: Chnaging MAKEFLAGS |
Date: |
Fri, 14 Jan 2005 22:03:34 +0000 (UTC) |
User-agent: |
nn/6.6.5+RFC1522 |
Greg Kilfoyle <address@hidden> writes:
> Hi,
>
> The manual (section 5.6.3) suggests that I can change the value of
> variable MAKEFLAGS such that the current make file will refer to the new
> setting.
This is a bit trickier than what the manual says. GNU make re-parses
MEKEFLAGS *after* the makefile (and all makefiles that it includes) has
been read. So options that affect makefile reading process (like -I)
won't take effect while those that change behavior of later stages
(like -r) will.
-boris