diff options
author | 2013-01-30 09:20:30 -0800 | |
---|---|---|
committer | 2013-01-30 09:20:30 -0800 | |
commit | 3fb1d6813605405f90c2ba934f111844bd776816 (patch) | |
tree | 0edec6ff1f407500df3a1ffd196fd4ead60e83e8 | |
parent | fcc161b53d3d911925e133fa1723c976f328ffcc (diff) | |
parent | 8e5718cca8d1c326ec39f045557cd70707f14965 (diff) | |
download | latinime-3fb1d6813605405f90c2ba934f111844bd776816.tar.gz latinime-3fb1d6813605405f90c2ba934f111844bd776816.tar.xz latinime-3fb1d6813605405f90c2ba934f111844bd776816.zip |
am 8e5718cc: Merge "Build native subdirectories first"
# Via Android (Google) Code Review (1) and Kurt Partridge (1)
* commit '8e5718cca8d1c326ec39f045557cd70707f14965':
Build native subdirectories first
-rw-r--r-- | Android.mk | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Android.mk b/Android.mk index 91b2fbbb0..aa869112c 100644 --- a/Android.mk +++ b/Android.mk @@ -1,4 +1,4 @@ -# Copyright (C) 2010 The Android Open Source Project +# Copyright (C) 2013 The Android Open Source Project # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -12,4 +12,5 @@ # See the License for the specific language governing permissions and # limitations under the License. -include $(call all-subdir-makefiles) +subdirs := native java tests tools +include $(call all-named-subdir-makefiles, $(subdirs)) |