aboutsummaryrefslogtreecommitdiffstats
path: root/testcase/multiline_and_leading_space.mk
blob: 71f0a5e8347d077a5658bd8ac62b8e28f627a900 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
X:=foo \
	 bar

Y:=foo \
   \
	 bar

$(info foo \
	 bar)

test:
	echo PASS $(X) $(Y)