变量 – 有条件地附加到Makefile目标内的变量

变量 – 有条件地附加到Makefile目标内的变量,第1张

概述我有一个看起来有点像这样的GNU Makefile: LIST = item1.PHONY: targetMain targetA targetB preA preBtargetMain:# DO all the work in here echo $(LIST)targetA: preA targetMaintargetB: preB targetMainpreA: 我有一个看起来有点像这样的GNU Makefile:

List = item1.PHONY: targetMain targetA targetB preA preBtargetMain:# DO all the work in here    echo $(List)targetA: preA targetMaintargetB: preB targetMainpreA:List += itemApreB:List += itemB

我的想法是运行make targetA或make targetB.他们两个都做了非常类似的事情,但有一个不同的项目列表.问题是变量没有有条件地附加到,它总是附加到,这意味着我的输出始终是“item1 itemA itemB”.

我如何有条件地附加到变量?

解决方法
List = item1.PHONY: targetMain targetA targetBtargetMain:# DO all the work in here    echo $(List)targetA: List+=itemAtargetB: List+=itemBtargetA targetB: targetMain
总结

以上是内存溢出为你收集整理的变量 – 有条件地附加到Makefile目标内的变量全部内容,希望文章能够帮你解决变量 – 有条件地附加到Makefile目标内的变量所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1212715.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-04
下一篇 2022-06-04

发表评论

登录后才能评论

评论列表(0条)

保存