StackOverflow 文档 makefile 教程 变量 引用变量 引用变量 Created: November-22, 2018 要使用存储在变量中的值,请使用 $,后跟括号或花括号括起来的变量名称。 x = hello y = $(x) # y now contains the value "hello" y = ${x} # parentheses and curly braces are treated exactly the same 如果变量的名称只有一个字符长,则可以省略括号/大括号(例如,$x)。此做法用于自动变量(见下文),但不建议用于通用变量。 简单扩展的变量自动变量