
Android Makefile
virus026
目标高于工作
展开
-
[Android Makefile] 简单介绍
每个模在编译的时候都会产生一个编译目录和一个安装目录,编译目录就是这个模块编译以后生成的目标文件,安装目录就代表着这个模块是否会编译进文件系统,就是是否编译进IMG。Android makefile分为四种:1、For config这类文件主要用来配置product,board,以及根据你的Host和Target选择相应的工具以及设定相应的通用编译选项。Borad主要是设计到硬件芯转载 2013-11-20 10:32:45 · 849 阅读 · 0 评论 -
[Android Makefile] Android NDK Document
Android.mk file syntax specificationIntroduction:-------------This document describes the syntax of Android.mk build filewritten to describe your C and C++ source files to the AndroidNDK. To un转载 2013-11-20 10:54:31 · 1327 阅读 · 0 评论 -
android编译系统makefile(Android.mk)写法
(1)Android.mk文件首先需要指定LOCAL_PATH变量,用于查找源文件。由于一般情况下Android.mk和需要编译的源文件在同一目录下,所以定义成如下形式:LOCAL_PATH:=$(call my-dir)上面的语句的意思是将LOCAL_PATH变量定义成本文件所在目录路径。(2)Android.mk中可以定义多个编译模块,每个编译模块都是以include $(转载 2013-11-21 17:40:00 · 914 阅读 · 0 评论