08 2023 档案
摘要:``` firm -- 坚定的,坚固的;公司 share -- n 股份,份额 executive -- 执行官 ``` ``` There is no chance,no density,no fate,that can hinder or control the firm resolve of
阅读全文
摘要:# 1.= “=”是最普通的等号,然而在Makefile中确实最容易搞错的赋值等号,使用**”=”进行赋值,变量的值是整个makefile中最后被指定的值。**不太容易理解,举个例子如下: ``` VIR_A = A VIR_B = $(VIR_A) B VIR_A = AA ``` 经过上面的赋值
阅读全文