value
来自「make debug tool. You can use this tool t」· 代码 · 共 31 行
TXT
31 行
# -*-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 nofurther expansion performed on it.\n";open(MAKEFILE,"> $makefile");print MAKEFILE <<'EOF';export FOO = foorecurse = FOO = $FOOstatic := FOO = $(value FOO)all: ; @echo $(recurse) $(value recurse) $(static) $(value static)EOFclose(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;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?