I wish to create variables based on other variables which are given from an included file by pattern. something like (lets assume VAR1 and VAR2 are included from a conf file):
VAR1 = A VAR2 = B
VARS = VAR*
I expect VARS to contain 'A B'.
How can I assign VARS like this in valid gnumake syntax? (read the manual, couldn't find it)