$(firstword <text>)
名称:首单词函数——firstword
用法:取字符串<text>中的第一个单词
返回:返回字符串<text>的第一个单词
示例: $(firstword foo bar)返回值是“foo”。
示例: ABC := foo ba sda vdf
$(firstword $(ABC))返回值是“foo”。
备注:这个函数可以用 word 函数来实现:$(word 1,<text>)