Hi Raleigh,

Rinehart, Raleigh wrote:
What is it you need to do with each element?
I'm not seeing how $(foreach var,list,text) isn't what you need.


  do_something := $(shell echo $(element))

  $(foreach element,$(LARGE_VAR),$(do_something))

this does the trick. thanks.
although the syntax is slightly different:

all:
        $(-- $(foreach element,$(LARGE_VAR),$(shell command $(element)))

Matthias


_______________________________________________
Help-make mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/help-make

Reply via email to