allwinner_a64/android/build/kati/testcase/call_with_whitespace.mk
2018-08-08 16:48:17 +08:00

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: