1 $(info $(SHELL)) 2 3 SHELL:=/bin/echo 4 5 $(info $(shell foo)) 6 7 echo=/bin/echo 8 SHELL=$(echo) 9 10 $(info $(shell bar)) 11 12 test: 13 baz 14