根据目标定义编译变量
我的 C++ 源文件查找从 makefile 传递的特定变量。当制作不同的目标时,这个变量的定义是不同的。
如何根据目标在 Makefile 中定义变量。
谢谢
my c++ source file look for a specific variable passed from the makefile. when making a different target, this variable definition is different.
How can I define a variable in Makefile based on target.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以使用特定于目标的变量值,它们传播到目标的先决条件:
You can use target-specific variable values, they propagate to target's prerequisites:
你的意思是这样的:
输出:
Do you mean something like this:
Output:
那又怎样呢?
What about that?