Re: Dropping "call" operator?

Kaz Kylheku <[email protected]> Mon, 25 Mar 2024 19:15:07 -0700
Newsgroups gmane.comp.gnu.make.general
Message-ID <[email protected]>
On 2024-03-25 18:47, Kaz Kylheku wrote:
> Is there another way to create variables with spaces other than something like:
> 
>   VARSP := a b c
>   $(VARSP) = value
>   $(info $(a b c)) # produces "value"

Addendum, yes, directly via:

define a b c
...
endef

as well as with embedded comma:

define a b c,
...
endef

These can be referenced via $(a b c) and $(a b c,).