Home | History | Annotate | Download | only in testcase
      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 
      5 define run-echo
      6 echo $@
      7 endef
      8 
      9 test:
     10 	$(run-echo)
     11