makefile的函数

$(strip <string> )  作用是:去掉字符串<string>中开头和结尾的字符串。

 

$(subst  <from>, <to>,<text>)  把字串<text>中的<from>字符串替换成<to>

 

$(patsubst <pattern> , <replacement>,<text>)  模式字符串替换函数

 

 

你可能感兴趣的:(String,makefile)