配置Android
在android源码的build目录下执行
. envsetup.sh (注意,命令前面有一个点,然后接一个“空格”键)
执行完后,就会多出以下几个命令:
1,- croot: Changes directory to the top of the tree.
2,- m: Makes from the top of the tree.
3,- mm: Builds all of the modules in the current directory.
4,- mmm: Builds all of the modules in the supplied directories.
5,- cgrep: Greps on all local C/C++ files.
6,- jgrep: Greps on all local Java files.
7,- resgrep: Greps on all local res/*.xml files.
8,- godir: Go to the directory containing a file.
9,- printconfig: 当前build的配置情况
有关m,mm,mma,mmm,mmma功能如下:
m:编译整个安卓系统
makes from the top of the tree
mm:编译当前目录下的模块,当前目录下需要有Android.mk这个makefile文件,否则就往上找最近的Android.mk文件。
builds all of the moudles in the current directory
mmm:编译指定路径下的模块,指定的路径下面需要有Android.mk这个makefile文件
builds all of the moudles in the supplies directory
mma:当前目录新增或删除文件后,可以用mma重新编译。
mmma:指定目录下新增或删除文件后,可以用mmma重新编译。 未全编译的情况系下,可以使用该命令单编译模块
mm、mmm是类似的,都是用来编译某些模块。