makefile函数
makefile函数
a $(foreach var, list, text) 在list中对每一个var,做text
b $(filter pattern..., text) 在text中取出符合patten格式的值
$(filter-out pattern..., text) 在text中取出不符合patten格式的值
c $(wildcard pattern) 在pattern定义了文件名的格式,wildcard取出其中存在的文件
d $(patsubst pattern, replacement, $(var)) 从列表中取出每一个值,如果符合pattern,则替换为replacement