[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Dropping "call" operator?
From: |
Kaz Kylheku |
Subject: |
Re: Dropping "call" operator? |
Date: |
Mon, 25 Mar 2024 19:15:07 -0700 |
User-agent: |
Roundcube Webmail/1.4.15 |
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,).