?? value
字號(hào):
# -*-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;
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -