aboutsummaryrefslogtreecommitdiffstats
path: root/testcase/append_self_reference.mk
blob: 8f3912f75aeca69317724fa7bc467f51718667a9 (plain)
1
2
3
4
5
6
7
8
x := one
x += two $(x)
$(info $(x))

# TODO: shouldn't crash.
#y = one
#y += two $(y)
#$(info $(y))