blob: 0bfdf01236c8537a5aaae4b2f9db17ab423609cb [file] [log] [blame]
# TODO(c-ninja): We're exporting `(echo )` for the last line, while make a kati(w/o ninja) uses `echo \`
SHELL:=/bin/bash
define func
$(info INFO: $(1))
echo $(1)
endef
$(info INFO2: $(call func, \
foo))
test:
$(call func, \
foo)
$(call func, \)