From 6a8069d8d6d85c1b2609dee0db7f36f0503537ea Mon Sep 17 00:00:00 2001 From: Primiano Tucci Date: Wed, 26 Feb 2014 11:09:19 +0000 Subject: [PATCH] Add usage comment to explain how to limit modules in mmm. 68895a96 has introduced the possibility to limit the modules being built by mmm. In many occasions this can save a lot of developement time since it allows to build one target without processing all the makefiles in the Android tree. Unfortunatelly this nice feature is undocumented. This CL adds the one line documentation. Change-Id: I6ded32c4774047599e9c44e5ea71c07e65731cda --- envsetup.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/envsetup.sh b/envsetup.sh index 51700630a..c688331ff 100644 --- a/envsetup.sh +++ b/envsetup.sh @@ -7,6 +7,7 @@ Invoke ". build/envsetup.sh" from your shell to add the following functions to y - m: Makes from the top of the tree. - mm: Builds all of the modules in the current directory, but not their dependencies. - mmm: Builds all of the modules in the supplied directories, but not their dependencies. + To limit the modules being built use the syntax: mmm dir/:target1,target2. - mma: Builds all of the modules in the current directory, and their dependencies. - mmma: Builds all of the modules in the supplied directories, and their dependencies. - cgrep: Greps on all local C/C++ files.