1# TODO(go): Fix 2 3MAKEVER:=$(shell make --version | ruby -n0e 'puts $$_[/Make (\d)/,1]') 4 5# GNU make 3.82 has this feature though. 6ifeq ($(MAKEVER),3) 7 8test: 9 echo test skipped 10 11else 12 13$(info $(shell echo foo)) 14override SHELL := echo 15$(info $(shell echo bar)) 16.POSIX: 17$(info $(shell echo baz)) 18test: 19 foobar 20 21endif 22