1define foo
2 $(eval X:=) \
3 $(eval X:=) \
4 $(warning foo)
5endef
6
7$(call foo)
8
9test:
10	echo FOO
11