
_ECHO ?= @

ifeq ($(origin _C_COMPILE), undefined)
define _C_COMPILE
@echo '$@($<)'
$(_ECHO)echo dummy compile
endef
endif

test.x: makefile
	$(_C_COMPILE)
