[bug #27394] Unexpected *** extraneous `endef'. Stop.

2009-09-07 Thread anonymous
URL: http://savannah.gnu.org/bugs/?27394 Summary: Unexpected *** extraneous `endef'. Stop. Project: make Submitted by: None Submitted on: Mon 07 Sep 2009 03:12:39 PM UTC Severity: 3 - Normal Item Group: Bug

[bug #27396] add version of include that treats paths as relative to the included file's directory

2009-09-07 Thread anonymous
URL: http://savannah.gnu.org/bugs/?27396 Summary: add version of include that treats paths as relative to the included file's directory Project: make Submitted by: None Submitted on: Mon 07 Sep 2009 05:47:46 PM UTC

make- target specific variables

2009-09-07 Thread Venkata Rajasekharu
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