main shinobi / tests / mk / kati / var_cond_assign / test / mk
1foo=FOO
2C ?= $(foo) $(bar)
3
4test:
5	echo "$(C)"
6
7bar=BAR
8