clearer Call Function example

2021-04-09 Thread 積丹尼 Dan Jacobson
In (info "(make) Call Function") One would assume reverse = $(2) $(1) foo = $(call reverse,a,b) should be reverse = $(2) $(1) foo = $(call $(reverse),a,b) but make does that $ stuff for us automatically, which makes us think maybe it is also doing the same f

Get rid of call function

2018-05-29 Thread Phi Debian
Hi All, I don't know if this has been discussed before, I tried to dig into the mail archive but didn't found any hit. I love the function like macro's (variables) :) and I was wondering if we could think about an enhancement were we could avoid the 'call' name in the call sequence. I got the im

call function

2000-12-15 Thread Stephane LEGOUGE
Hello, i found this difference between 3.78.1 and 3.79.1 using call function with shell commands : :: makefile :: A = echo $1 toto: ; @ f=toto && $(call A,$$f) .PHONY: toto With GNU Make version 3.78.1 > make toto > With GNU Make