aboutsummaryrefslogtreecommitdiffstats
path: root/testcase/empty_line_in_define.mk
blob: 17794a92202b2b9f94d3856e5cb8bd788ba02d6a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
define foo
echo foo

endef

define bar

echo bar

endef

define baz
echo baz

echo baz
endef

test:
	$(foo) $(foo)
	$(bar) $(bar)
	$(baz) $(baz)