.SHELLFLAGS := -o nounset -c

all:
	echo "Foo is $${FOO}"

unset:
	set -o nounset; echo "Foo is $${FOO}"

make-resolved:
	echo "Foo is ${FOO}"
