1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
|
# -*-perl-*-
$description = "Test the .DEFAULT_GOAL special variable.";
$details = "";
# Test #1: basic logic.
#
run_make_test('
# Basics.
#
foo: ; @:
ifneq ($(.DEFAULT_GOAL),foo)
$(error )
endif
# Reset to empty.
#
.DEFAULT_GOAL :=
bar: ; @:
ifneq ($(.DEFAULT_GOAL),bar)
$(error )
endif
# Change to a different goal.
#
.DEFAULT_GOAL := baz
baz: ; @echo $@
',
'',
'baz');
# Test #2: unknown goal.
#
run_make_test('
.DEFAULT_GOAL = foo
',
'',
"#MAKE#: *** No rule to make target 'foo'. Stop.",
512);
# Test #3: more than one goal.
#
run_make_test('
.DEFAULT_GOAL := foo bar
',
'',
'#MAKE#: *** .DEFAULT_GOAL contains more than one target. Stop.',
512);
# Test #4: Savannah bug #12226.
#
run_make_test('
define rule
foo: ; @echo $$@
endef
define make-rule
$(eval $(rule))
endef
$(call make-rule)
',
'',
'foo');
# TEST #5: .DEFAULT_GOAL containing just whitespace (Savannah bug #25697)
run_make_test('
N =
.DEFAULT_GOAL = $N $N # Just whitespace
foo: ; @echo "boo"
',
'', "#MAKE#: *** No targets. Stop.\n", 512);
# This tells the test driver that the perl test script executed properly.
1;
|