blob: 508bbee9894a868d753a9a35e620b2e9bfa032d3 [file] [log] [blame]
# TODO(c): For non-bach environment, implement $(SHELL).
SHELL:=/bin/bash
define func
$(info INFO: $(1))
echo $(1)
endef
$(info INFO2: $(call func, \
foo))
test:
$(call func, \
foo)
$(call func, \)