Re: append assignment operator in target specific variable

2019-05-19 Thread Henrik Carlqvist
> 1. "foo" is simple variable. >so result have to be 100 but is 200 > > foo := > val := 100 > > all : foo += $(val) > all : > @echo foo : $(foo) > > val := 200 > > result is : 200 Yes, the result will become 200 because foo is not expanded until it is usead at the line "@echo foo : $

Re: append assignment operator in target specific variable

2019-05-19 Thread Martin Dorey
Sunday, May 19, 2019 08:52 To: bug-make@gnu.org Subject: append assignment operator in target specific variable * EXTERNAL EMAIL * GNU Make 4.2.1 Built for x86_64-pc-linux-gnu Copyright (C) 1988-2016 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <https://nam

append assignment operator in target specific variable

2019-05-19 Thread Hyunho Cho
GNU Make 4.2.1 Built for x86_64-pc-linux-gnu Copyright (C) 1988-2016 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law.