Make variable assignment difference

Source: Internet
Author: User

Ask:

What is the difference:

 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

========================================================== ====================================

########################## Makefile ############# ######
A = orginal_value
B = $ ()
A = later_value
ALL:
@ Echo $ (B)

######################################## ##########
# Make
Later_value


########################## Makefile ############# ######
A = orginal_value
B: = $ ()
A = later_value
ALL:
@ Echo $ (B)

######################################## ###########
# Make
Original_value

######################################## ###########
The difference is obvious: = the defined variable does not extend if the value content is itself a variable. If it is =, it will extend. Therefore, when using it, you must add the following when you do not need to extend it to prevent uncontrollable situations.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.