从 Make Variables 中删除值
使用 GNU Make 我想从变量中删除值:
VAR := x.c y.c z.c
<snip>
VAR += x_x.c y_y.c
我现在想从变量中删除“xc”和“yc”。我尝试过使用 subst 命令,但 x_x.c 也被删除了。
有什么方法可以做到这一点吗?
最终变量应如下所示:
VAR = z.c x_x.c y_y.c
Using GNU Make I want to remove values from a variable:
VAR := x.c y.c z.c
<snip>
VAR += x_x.c y_y.c
I now want to remove the "x.c" and "y.c" from the variable. I have tried using subst command but the x_x.c is removed as well.
Are there any ways of doing this?
The final variable should look like:
VAR = z.c x_x.c y_y.c
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要
filter-out
功能:You want the
filter-out
function: