android.mk 怎么注释
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了android.mk 怎么注释相关的知识,希望对你有一定的参考价值。
注释的方式是使用#这个符号,如下代码:#8 预编译宏
# define the macro to compile through support/zip_support/ioapi.c
LOCAL_CFLAGS := -DUSE_FILE32API
LOCAL_EXPORT_CFLAGS := -DUSE_FILE32API
#9 声明生成静态库
include $(BUILD_STATIC_LIBRARY)
#10 添加外部导入库目录
$(call import-add-path,$(LOCAL_PATH))
#11 添加导入库(基于上一行添加的导入库目录) 参考技术A
非常简单:注释的开头使用"#"警号这个符号
比如:
#Use the following include to make our test apk
include $(call all-makefiles-under,$(LOCAL_PATH))
以上是关于android.mk 怎么注释的主要内容,如果未能解决你的问题,请参考以下文章