Linux 中makefile的命令包定義及使用
下面以\build\core\product.mk下面的內(nèi)容為例介紹:
span style="font-size:14px;">define _find-android-products-files
$(shell test -d device finddevice -maxdepth 6 -name AndroidProducts.mk) \
$(shell test -d vendor find vendor -maxdepth 6 -nameAndroidProducts.mk) \
$(SRC_TARGET_DIR)/product/AndroidProducts.mk
endef/span>
makefile文件中如出現(xiàn)一些相同的命令序列,可為這些相同的序列定義一個(gè)變量,不能和makefile文件中的變量重名,這里是_find-Android-products-files,定義這種命令序列的語(yǔ)法以define開(kāi)始,以endef結(jié)束。
命令包的使用,就像使用變量一樣:
span style="font-size:14px;">define get-all-product-makefiles
$(call get-product-makefiles,$(_find-android-products-files))
endef/span>
$(_find-android-products-files),用$來(lái)使用命令包,就像使用函數(shù)和變量一樣
這里call是函數(shù)名,get-product-makefiles和$(_find-android-products-files)是函數(shù)的參數(shù)
感謝閱讀,希望能幫助到大家,謝謝大家對(duì)本站的支持!
您可能感興趣的文章:- linux中無(wú)make命令的問(wèn)題(make: *** 沒(méi)有指明目標(biāo)并且找不到 makefile及make命令安裝方法)
- 一天一個(gè)shell命令 linux文本系列-file命令用法
- Linux執(zhí)行可執(zhí)行文件提示No such file or directory的解決方法
- Linux下環(huán)境變量配置方法小結(jié)(.bash_profile和.bashrc的區(qū)別)
- Linux中文件描述符fd與文件指針FILE*互相轉(zhuǎn)換實(shí)例解析
- Linux makefile 和shell文件相互調(diào)用實(shí)例詳解
- Linux file命令的使用