1# http://www.gnu.org/software/make/manual/make.html#Canned-Recipes
2
3# canned recipes are used in gyp-generated Makefile (fixup_dep etc)
4
5define run-echo
6echo $@
7endef
8
9test:
10	$(run-echo)
11