GNU Make 中强制变量扩展
如何强制 GNU Make 变量立即求值?考虑以下示例:
TARGET:=fred
wilma:
mkdir -p $(TARGET)
TARGET:=barney
betty:
mkdir -p $(TARGET)
all: one two
.PHONY: one two all
使用 make all
,Make 将仅创建“barney”,因为仅在读取 makefile 并分配最终值(“barney”)后才会评估配方字符串。
在这种情况下,我需要创建“fred”和“barney”。
How do I force GNU Make variables to evaluate immediately? Consider the following example:
TARGET:=fred
wilma:
mkdir -p $(TARGET)
TARGET:=barney
betty:
mkdir -p $(TARGET)
all: one two
.PHONY: one two all
With make all
, Make will only create "barney", because the recipe strings are evaluated only after the makefile was read and the final value ("barney") was assigned.
I need to create both "fred" and "barney" in this instance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)