9 lines
143 B
Makefile
9 lines
143 B
Makefile
func = $(info called with '$(1)')
|
|
test = $(call $(1),$(1))
|
|
|
|
$(call test,func)
|
|
$(call test, func)
|
|
$(call test,func )
|
|
$(call test, func )
|
|
|
|
test:
|