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