File: value

package info (click to toggle)
make-dfsg 4.4.1-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 8,948 kB
  • sloc: ansic: 31,304; sh: 5,222; perl: 1,716; makefile: 162; lisp: 26; sed: 16
file content (30 lines) | stat: -rw-r--r-- 732 bytes parent folder | download | duplicates (3)
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
#                                                                    -*-perl-*-

$description = "Test the value function.";

$details = "This is a test of the value function in GNU Make.
This function will evaluate to the value of the named variable with no
further expansion performed on it.\n";

open(MAKEFILE,"> $makefile");

print MAKEFILE <<'EOF';
export FOO = foo

recurse = FOO = $FOO
static := FOO = $(value FOO)

all: ; @echo $(recurse) $(value recurse) $(static) $(value static)
EOF

close(MAKEFILE);

&run_make_with_options($makefile, "", &get_logfile);

# Create the answer to what should be produced by this Makefile
$answer = "FOO = OO FOO = foo FOO = foo FOO = foo\n";


&compare_output($answer,&get_logfile(1));

1;