mirror of
https://github.com/mirror/make.git
synced 2025-01-10 12:20:18 +08:00
20 lines
600 B
Plaintext
20 lines
600 B
Plaintext
|
# -*-perl-*-
|
||
|
|
||
|
$description = "Test the --eval option.";
|
||
|
|
||
|
$details = "Verify that --eval options take effect,
|
||
|
and are passed to sub-makes.";
|
||
|
|
||
|
# Verify that --eval is evaluated first
|
||
|
run_make_test(q!
|
||
|
BAR = bar
|
||
|
all: ; @echo all
|
||
|
recurse: ; @$(MAKE) -f #MAKEFILE# && echo recurse!,
|
||
|
'--eval=\$\(info\ eval\) FOO=\$\(BAR\)', "eval\nall");
|
||
|
|
||
|
# Make sure that --eval is handled correctly during recursion
|
||
|
run_make_test(undef, '--no-print-directory --eval=\$\(info\ eval\) recurse',
|
||
|
"eval\neval\nall\nrecurse");
|
||
|
|
||
|
1;
|