summaryrefslogtreecommitdiff
path: root/tests/scripts/functions/origin
blob: 9b9fd56a16c18bf5af3f9ac3d12d704d12890a8c (plain)
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
#                                                                    -*-perl-*-

$description = "Test the origin function.";

$details = "This is a test of the origin function in gnu make.
This function will report on where a variable was
defined per the following list:

'undefined'            never defined
'default'              default definition
'environment'          environment var without -e
'environment override' environment var with    -e
'file'                 defined in makefile
'command line'         defined on the command line
'override'             defined by override in makefile
'automatic'            Automatic variable\n";

# Set an environment variable
$ENV{MAKETEST} = 1;

run_make_test('
foo := bletch garf
auto_var = undefined CC MAKETEST MAKE foo CFLAGS WHITE @
av = $(foreach var, $(auto_var), $(origin $(var)) )
override WHITE := BLACK
.RECIPEPREFIX = >
all: auto
> @echo $(origin undefined)
> @echo $(origin CC)
> @echo $(origin MAKETEST)
> @echo $(origin MAKE)
> @echo $(origin foo)
> @echo $(origin CFLAGS)
> @echo $(origin WHITE)
> @echo $(origin @)
auto :
> @echo $(av)',
    '-e WHITE=WHITE CFLAGS=',
    'undefined default environment default file command line override automatic
undefined
default
environment
default
file
command line
override
automatic');

1;