github.com/westcoastroms/westcoastroms-build@v0.0.0-20190928114312-2350e5a73030/build/kati/testcase/multiline_arg.mk (about)

     1  SHELL:=/bin/bash
     2  
     3  define func
     4  $(info INFO: $(1))
     5  echo $(1)
     6  endef
     7  
     8  $(info INFO2: $(call func, \
     9  	foo))
    10  
    11  test:
    12  	$(call func, \
    13  	foo)
    14  	$(call func, \)