Linux 中makefile的命令包定义及使用
原创
用户1685462
修改
于
2021-08-30 14:15:02
修改
于
2021-08-30 14:15:02
下面以\build\core\product.mk下面的内容为例介绍:
<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>