mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-21 20:03:08 +09:00
8 lines
230 B
Makefile
8 lines
230 B
Makefile
# This test ensures that a local variable in a $(foreach) is bound to
|
|
# the local value, not a global value.
|
|
i := dummy
|
|
|
|
all:
|
|
test "$(foreach i,foo bar,found:$(i))" = "found:foo found:bar"
|
|
test "$(i)" = "dummy"
|
|
@echo TEST-PASS
|