make: Using target specific variables in prerequisites

大城市里の小女人 提交于 2019-11-27 05:52:51

问题


I'm trying to write a Makefile where prerequisites using target specific variables

version=

target1: override version=1
target1: package

target2: override version=2
target2: package

package: dir=package-${version}\
package: source

source: src/${version}.c

When i run make the version variable is in target package and source empty.

What I'm doing wrong?


回答1:


Use Secondary Expansion:

.SECONDEXPANSION:

package: dir=package-$${version}
package: source

source: src/$${version}.c

UPD.

This answer is wrong, the suggested code won't work because of the reasons explained in the answer to a similar question.

TL;DR: Target-specific variables take their effect based on the target that make is currently building [1]. Second expansion, in turn, takes place right at the end of the read-in phase [2], before building anything.

Thanks to @koniiiik for pointing out.



来源:https://stackoverflow.com/questions/9311743/make-using-target-specific-variables-in-prerequisites

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!