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
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
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