aboutsummaryrefslogtreecommitdiffstats
path: root/testcase/multiline_arg.mk
blob: 1e64318114ae52f5206365cdb2d47bf1a0137adf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
SHELL:=/bin/bash

define func
$(info INFO: $(1))
echo $(1)
endef

$(info INFO2: $(call func, \
	foo))

test:
	$(call func, \
	foo)
	$(call func, \)