Home | History | Annotate | Download | only in testcase
      1 func = $(info called with '$(1)')
      2 test = $(call $(1),$(1))
      3 
      4 $(call test,func)
      5 $(call test, func)
      6 $(call test,func )
      7 $(call test, func )
      8 
      9 test:
     10