8 lines
No EOL
99 B
Makefile
8 lines
No EOL
99 B
Makefile
x := one
|
|
x += two $(x)
|
|
$(info $(x))
|
|
|
|
# TODO: shouldn't crash.
|
|
#y = one
|
|
#y += two $(y)
|
|
#$(info $(y))
|