Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
1 VAR = val1 \
2 val2
4 VAR2 = val1space\
5 val2
7 VAR3 = val3 \\\
8 cont3
10 all: otarget test.target
11 test "$(VAR)" = "val1 val2 "
12 test "$(VAR2)" = "val1space val2"
13 test '$(VAR3)' = 'val3 \ cont3'
14 test "hello \
15 world" = "hello world"
16 test "hello" = \
17 "hello"
18 @echo TEST-PASS
20 otarget: ; test "hello\
21 world" = "helloworld"
23 test.target: %.target: ; test "hello\
24 world" = "helloworld"