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目标内的变量所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)