aboutsummaryrefslogtreecommitdiffstats
path: root/testcase/foreach.mk
blob: 3dde97a39fb5a3fdbe95f516493f98bc631fc390 (plain)
1
2
3
4
5
6
7
base := base
dirs := a b c d
dir := FAIL
files := $(foreach dir,$(dirs),$(foreach subdir,$(dirs),$(dir)/$(subdir)/$(base)))

test:
	echo $(files)