makefile 函数
时间: 2023-11-09 19:06:24 浏览: 87
Makefile函数
makefile 中的函数可以用来处理变量,常用的函数有以下几种:
1. $(subst from,to,text):将文本 text 中的字符串 from 替换为字符串 to。
2. $(patsubst pattern,replacement,text):将文本 text 中符合模式 pattern 的字符串替换为 replacement。
3. $(strip string):去除字符串 string 中开头和结尾的空格,并将其中多余的空格缩减为一个。
4. $(wildcard pattern):返回符合模式 pattern 的文件名列表。
5. $(shell command):执行 shell 命令 command,并返回其输出结果。
例如,我们可以使用 $(wildcard *.c) 获取当前目录下所有的 .c 文件名列表。
阅读全文