Hi all,

makefile:
---------------------

VAR = 1 $< 1
all : VAR += 2 $< 2

all: makefile
        echo $(VAR)

-------------------

bash-3.00$ make
1 1 2 makefile 2

Since VAR is a recursively defined variable its value should be evaluated
during the command execution.

But why it is not
    "1 makefile 1 2 makefile 2 "


- Regards,
Rajasekhar.
_______________________________________________
Bug-make mailing list
Bug-make@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-make

Reply via email to