makefile中的patsubst函数有何作用?

Posted dakewei

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了makefile中的patsubst函数有何作用?相关的知识,希望对你有一定的参考价值。

答:这是个模式替换函数,格式为:

$(patsubst <pattern>,<replacement>,<text>) 

  查找text中的单词,如果匹配pattern,那么就用replacement的内容替换

  举例:

  $(patsubst %.c,%.o,jello1.c jello2.c)

  那么将会替换成jello1.o jello2.o

以上是关于makefile中的patsubst函数有何作用?的主要内容,如果未能解决你的问题,请参考以下文章

Makefile-函数patsubst

makefile中的wildcard ,notdir, patsubst

wildcard ,notdir ,patsubst ,obj=$(dir:%.c=%.o)

Makefile(patsubst,wildcard)

Makefile(patsubst,wildcard)

makefile函数