您的位置:首页 > 其它

Makefile 中四种变量赋值方式的区别

2012-11-16 11:28 537 查看
From: http://my.oschina.net/zengsai/blog/9566

Ask:

What is the difference between :
 VARIABLE = value
 VARIABLE ?= value
 VARIABLE := value
 VARIABLE += value


I have read the section in GNU Make's manual, but it still doesn't make sense to me.

 

Explanation:

 

VARIABLE = value

Normal setting of a variable - values within it are recursively expanded when the variable is used, not when it's declared

VARIABLE := value

Setting of a variable with simple expansion of the values inside - values within it are expanded at declaration time.

VARIABLE ?= value

Setting of a variable only if it doesn't have a value

VARIABLE += value

Appending the supplied value to the existing value

内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: