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,).