Android.mk 与 Application.mk
我对Android.mk & 的使用有点模糊Application.mk
我尝试阅读 APPLICATION-MK.HTML & NDK 附带的文档中的 ANDROID-MK.HTML,但仍然对两个 makefile 的用途感到困惑。
我将非常感谢任何可以帮助我理解这一点的人。
I'm a little fuzzy about the use of Android.mk & Application.mk
I've tried reading APPLICATION-MK.HTML & ANDROID-MK.HTML in the documentation that comes with NDK, but still confused about the purpose of two makefiles.
I'll be really grateful to anyone who could help me understand this.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
每个模块需要一个且仅有一个Android.mk。如果您的本机应用程序中只有一个模块,则 Application.mk 是多余的(但是,如果您偏离默认行为,则有一些内容只能由 Application.mk 控制)。但是,如果您有许多模块,因此项目中有许多 Android.mk 文件,那么 Application.mk 可用于提供适用于所有模块的应用程序范围设置。
Each module requires one and only one Android.mk. If all you ever have is one module in your native application, the Application.mk is redundant (however there are a few things that can only be controlled by the Application.mk if you veer from default behavior). However, if you have many modules, ergo many Android.mk files in your project, than the Application.mk can be useful for providing application-wide settings that apply to ALL modules.
引用自 docs/OVERVIEW.html
希望有帮助
Quote from docs/OVERVIEW.html
hope it helps