1make: Bad modifier `:[]' for LIST
2LIST:[]="" is an error
3LIST:[0]="one two three four five six"
4LIST:[0x0]="one two three four five six"
5LIST:[000]="one two three four five six"
6LIST:[*]="one two three four five six"
7LIST:[@]="one two three four five six"
8LIST:[0]:C/ /,/="one,two three four five six"
9LIST:[0]:C/ /,/g="one,two,three,four,five,six"
10LIST:[0]:C/ /,/1g="one,two,three,four,five,six"
11LIST:[*]:C/ /,/="one,two three four five six"
12LIST:[*]:C/ /,/g="one,two,three,four,five,six"
13LIST:[*]:C/ /,/1g="one,two,three,four,five,six"
14LIST:[@]:C/ /,/="one two three four five six"
15LIST:[@]:C/ /,/g="one two three four five six"
16LIST:[@]:C/ /,/1g="one two three four five six"
17LIST:[@]:[0]:C/ /,/="one,two three four five six"
18LIST:[0]:[@]:C/ /,/="one two three four five six"
19LIST:[@]:[*]:C/ /,/="one,two three four five six"
20LIST:[*]:[@]:C/ /,/="one two three four five six"
21EMPTY=""
22EMPTY:[#]="1" == 1 ?
23ESCAPEDSPACE="\ "
24ESCAPEDSPACE:[#]="1" == 1 ?
25REALLYSPACE=" "
26REALLYSPACE:[#]="1" == 1 ?
27LIST:[#]="6"
28LIST:[0]:[#]="1" == 1 ?
29LIST:[*]:[#]="1" == 1 ?
30LIST:[@]:[#]="6"
31LIST:[1]:[#]="1"
32LIST:[1..3]:[#]="3"
33EMPTY:[1]=""
34ESCAPEDSPACE="\ "
35ESCAPEDSPACE:[1]="\ "
36REALLYSPACE=" "
37REALLYSPACE:[1]="" == "" ?
38REALLYSPACE:[*]:[1]=" " == " " ?
39LIST:[1]="one"
40make: Bad modifier `:[1.]' for LIST
41LIST:[1.]="" is an error
42make: Bad modifier `:[1].' for LIST
43LIST:[1].="}" is an error
44LIST:[2]="two"
45LIST:[6]="six"
46LIST:[7]=""
47LIST:[999]=""
48make: Bad modifier `:[-]' for LIST
49LIST:[-]="" is an error
50make: Bad modifier `:[--]' for LIST
51LIST:[--]="" is an error
52LIST:[-1]="six"
53LIST:[-2]="five"
54LIST:[-6]="one"
55LIST:[-7]=""
56LIST:[-999]=""
57LONGLIST:[17]="17"
58LONGLIST:[0x11]="17"
59LONGLIST:[021]="17"
60LIST:[0]:[1]="one two three four five six"
61LIST:[*]:[1]="one two three four five six"
62LIST:[@]:[1]="one"
63LIST:[0]:[2]=""
64LIST:[*]:[2]=""
65LIST:[@]:[2]="two"
66LIST:[*]:C/ /,/:[2]=""
67LIST:[*]:C/ /,/:[*]:[2]=""
68LIST:[*]:C/ /,/:[@]:[2]="three"
69make: Bad modifier `:[1.]' for LIST
70LIST:[1.]="" is an error
71make: Bad modifier `:[1..]' for LIST
72LIST:[1..]="" is an error
73LIST:[1..1]="one"
74make: Bad modifier `:[1..1.]' for LIST
75LIST:[1..1.]="" is an error
76LIST:[1..2]="one two"
77LIST:[2..1]="two one"
78LIST:[3..-2]="three four five"
79LIST:[-4..4]="three four"
80make: Bad modifier `:[0..1]' for LIST
81LIST:[0..1]="" is an error
82make: Bad modifier `:[-1..0]' for LIST
83LIST:[-1..0]="" is an error
84LIST:[-1..1]="six five four three two one"
85LIST:[0..0]="one two three four five six"
86LIST:[3..99]="three four five six"
87LIST:[-3..-99]="four three two one"
88LIST:[-99..-3]="one two three four"
89HASH="#" == "#" ?
90LIST:[${HASH}]="6"
91LIST:[${ZERO}]="one two three four five six"
92LIST:[${ZERO}x${ONE}]="one"
93LIST:[${ONE}]="one"
94LIST:[${MINUSONE}]="six"
95LIST:[${STAR}]="one two three four five six"
96LIST:[${AT}]="one two three four five six"
97make: Bad modifier `:[${EMPTY' for LIST
98LIST:[${EMPTY}]="" is an error
99LIST:[${LONGLIST:[21]:S/2//}]="one"
100LIST:[${LIST:[#]}]="six"
101LIST:[${LIST:[${HASH}]}]="six"
102LIST:S/ /,/="one two three four five six"
103LIST:S/ /,/W="one,two three four five six"
104LIST:S/ /,/gW="one,two,three,four,five,six"
105EMPTY:S/^/,/=","
106EMPTY:S/^/,/W=","
107LIST:C/ /,/="one two three four five six"
108LIST:C/ /,/W="one,two three four five six"
109LIST:C/ /,/gW="one,two,three,four,five,six"
110EMPTY:C/^/,/=","
111EMPTY:C/^/,/W=","
112LIST:tW="one two three four five six"
113LIST:tw="one two three four five six"
114LIST:tW:C/ /,/="one,two three four five six"
115LIST:tW:C/ /,/g="one,two,three,four,five,six"
116LIST:tW:C/ /,/1g="one,two,three,four,five,six"
117LIST:tw:C/ /,/="one two three four five six"
118LIST:tw:C/ /,/g="one two three four five six"
119LIST:tw:C/ /,/1g="one two three four five six"
120LIST:tw:tW:C/ /,/="one,two three four five six"
121LIST:tW:tw:C/ /,/="one two three four five six"
122exit status 0
123