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)。此做法用於自動變數(見下文),但不建議用於通用變數。 簡單擴充套件的變數自動變數