The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1 | # |
| 2 | # Copyright (C) 2008 The Android Open Source Project |
| 3 | # |
| 4 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | # you may not use this file except in compliance with the License. |
| 6 | # You may obtain a copy of the License at |
| 7 | # |
| 8 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | # |
| 10 | # Unless required by applicable law or agreed to in writing, software |
| 11 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | # See the License for the specific language governing permissions and |
| 14 | # limitations under the License. |
| 15 | # |
| 16 | |
| 17 | ## |
| 18 | ## Common build system definitions. Mostly standard |
| 19 | ## commands for building various types of targets, which |
| 20 | ## are used by others to construct the final targets. |
| 21 | ## |
| 22 | |
| 23 | # These are variables we use to collect overall lists |
| 24 | # of things being processed. |
| 25 | |
| 26 | # Full paths to all of the documentation |
| 27 | ALL_DOCS:= |
| 28 | |
| 29 | # The short names of all of the targets in the system. |
| 30 | # For each element of ALL_MODULES, two other variables |
| 31 | # are defined: |
| 32 | # $(ALL_MODULES.$(target)).BUILT |
| 33 | # $(ALL_MODULES.$(target)).INSTALLED |
| 34 | # The BUILT variable contains LOCAL_BUILT_MODULE for that |
| 35 | # target, and the INSTALLED variable contains the LOCAL_INSTALLED_MODULE. |
| 36 | # Some targets may have multiple files listed in the BUILT and INSTALLED |
| 37 | # sub-variables. |
| 38 | ALL_MODULES:= |
| 39 | |
| 40 | # Full paths to targets that should be added to the "make droid" |
| 41 | # set of installed targets. |
| 42 | ALL_DEFAULT_INSTALLED_MODULES:= |
| 43 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 44 | # The list of tags that have been defined by |
| 45 | # LOCAL_MODULE_TAGS. Each word in this variable maps |
| 46 | # to a corresponding ALL_MODULE_TAGS.<tagname> variable |
| 47 | # that contains all of the INSTALLED_MODULEs with that tag. |
| 48 | ALL_MODULE_TAGS:= |
| 49 | |
| 50 | # Similar to ALL_MODULE_TAGS, but contains the short names |
| 51 | # of all targets for a particular tag. The top-level variable |
| 52 | # won't have the list of tags; ust ALL_MODULE_TAGS to get |
| 53 | # the list of all known tags. (This means that this variable |
| 54 | # will always be empty; it's just here as a placeholder for |
| 55 | # its sub-variables.) |
| 56 | ALL_MODULE_NAME_TAGS:= |
| 57 | |
| 58 | # Full paths to all prebuilt files that will be copied |
| 59 | # (used to make the dependency on acp) |
| 60 | ALL_PREBUILT:= |
| 61 | |
| 62 | # Full path to all files that are made by some tool |
| 63 | ALL_GENERATED_SOURCES:= |
| 64 | |
| 65 | # Full path to all asm, C, C++, lex and yacc generated C files. |
| 66 | # These all have an order-only dependency on the copied headers |
| 67 | ALL_C_CPP_ETC_OBJECTS:= |
| 68 | |
Iliyan Malchev | b375e71 | 2011-03-08 16:19:48 -0800 | [diff] [blame] | 69 | # The list of dynamic binaries that haven't been stripped/compressed/etc. |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 70 | ALL_ORIGINAL_DYNAMIC_BINARIES:= |
| 71 | |
| 72 | # These files go into the SDK |
| 73 | ALL_SDK_FILES:= |
| 74 | |
| 75 | # Files for dalvik. This is often build without building the rest of the OS. |
| 76 | INTERNAL_DALVIK_MODULES:= |
| 77 | |
| 78 | # All findbugs xml files |
| 79 | ALL_FINDBUGS_FILES:= |
| 80 | |
Ying Wang | fd626f2 | 2011-12-12 12:57:38 -0800 | [diff] [blame] | 81 | # GPL module license files |
| 82 | ALL_GPL_MODULE_LICENSE_FILES:= |
| 83 | |
Ying Wang | ae25ec1 | 2012-06-19 10:40:37 -0700 | [diff] [blame] | 84 | # Generated class file names for Android resource. |
| 85 | # They are escaped and quoted so can be passed safely to a bash command. |
| 86 | ANDROID_RESOURCE_GENERATED_CLASSES := 'R.class' 'R$$*.class' 'Manifest.class' 'Manifest$$*.class' |
| 87 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 88 | ########################################################### |
| 89 | ## Debugging; prints a variable list to stdout |
| 90 | ########################################################### |
| 91 | |
| 92 | # $(1): variable name list, not variable values |
| 93 | define print-vars |
| 94 | $(foreach var,$(1), \ |
| 95 | $(info $(var):) \ |
| 96 | $(foreach word,$($(var)), \ |
| 97 | $(info $(space)$(space)$(word)) \ |
| 98 | ) \ |
| 99 | ) |
| 100 | endef |
| 101 | |
| 102 | ########################################################### |
Joe Onorato | 64d85d0 | 2009-04-09 19:31:12 -0700 | [diff] [blame] | 103 | ## Evaluates to true if the string contains the word true, |
| 104 | ## and empty otherwise |
| 105 | ## $(1): a var to test |
| 106 | ########################################################### |
| 107 | |
| 108 | define true-or-empty |
| 109 | $(filter true, $(1)) |
| 110 | endef |
| 111 | |
| 112 | |
| 113 | ########################################################### |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 114 | ## Retrieve the directory of the current makefile |
| 115 | ########################################################### |
| 116 | |
| 117 | # Figure out where we are. |
| 118 | define my-dir |
Dave Bort | b392641 | 2009-05-19 16:12:22 -0700 | [diff] [blame] | 119 | $(strip \ |
Ying Wang | 68f1c77 | 2012-04-23 21:29:18 -0700 | [diff] [blame] | 120 | $(eval LOCAL_MODULE_MAKEFILE := $$(lastword $$(MAKEFILE_LIST))) \ |
| 121 | $(if $(filter $(CLEAR_VARS),$(LOCAL_MODULE_MAKEFILE)), \ |
Dave Bort | b392641 | 2009-05-19 16:12:22 -0700 | [diff] [blame] | 122 | $(error LOCAL_PATH must be set before including $$(CLEAR_VARS)) \ |
| 123 | , \ |
Ying Wang | 68f1c77 | 2012-04-23 21:29:18 -0700 | [diff] [blame] | 124 | $(patsubst %/,%,$(dir $(LOCAL_MODULE_MAKEFILE))) \ |
Dave Bort | b392641 | 2009-05-19 16:12:22 -0700 | [diff] [blame] | 125 | ) \ |
| 126 | ) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 127 | endef |
| 128 | |
| 129 | ########################################################### |
| 130 | ## Retrieve a list of all makefiles immediately below some directory |
| 131 | ########################################################### |
| 132 | |
| 133 | define all-makefiles-under |
| 134 | $(wildcard $(1)/*/Android.mk) |
| 135 | endef |
| 136 | |
| 137 | ########################################################### |
| 138 | ## Look under a directory for makefiles that don't have parent |
| 139 | ## makefiles. |
| 140 | ########################################################### |
| 141 | |
| 142 | # $(1): directory to search under |
| 143 | # Ignores $(1)/Android.mk |
| 144 | define first-makefiles-under |
Joe Onorato | dc1a728 | 2009-08-04 15:58:26 -0400 | [diff] [blame] | 145 | $(shell build/tools/findleaves.py --prune=out --prune=.repo --prune=.git \ |
| 146 | --mindepth=2 $(1) Android.mk) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 147 | endef |
| 148 | |
| 149 | ########################################################### |
| 150 | ## Retrieve a list of all makefiles immediately below your directory |
| 151 | ########################################################### |
| 152 | |
| 153 | define all-subdir-makefiles |
| 154 | $(call all-makefiles-under,$(call my-dir)) |
| 155 | endef |
| 156 | |
| 157 | ########################################################### |
| 158 | ## Look in the named list of directories for makefiles, |
| 159 | ## relative to the current directory. |
| 160 | ########################################################### |
| 161 | |
| 162 | # $(1): List of directories to look for under this directory |
| 163 | define all-named-subdir-makefiles |
Chih-Wei Huang | e73c4bb | 2011-01-16 18:31:29 +0800 | [diff] [blame] | 164 | $(wildcard $(addsuffix /Android.mk, $(addprefix $(call my-dir)/,$(1)))) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 165 | endef |
| 166 | |
| 167 | ########################################################### |
| 168 | ## Find all of the java files under the named directories. |
| 169 | ## Meant to be used like: |
| 170 | ## SRC_FILES := $(call all-java-files-under,src tests) |
| 171 | ########################################################### |
| 172 | |
| 173 | define all-java-files-under |
| 174 | $(patsubst ./%,%, \ |
| 175 | $(shell cd $(LOCAL_PATH) ; \ |
Conley Owens | f435739 | 2012-10-02 10:32:00 -0700 | [diff] [blame] | 176 | find -L $(1) -name "*.java" -and -not -name ".*") \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 177 | ) |
| 178 | endef |
| 179 | |
| 180 | ########################################################### |
| 181 | ## Find all of the java files from here. Meant to be used like: |
| 182 | ## SRC_FILES := $(call all-subdir-java-files) |
| 183 | ########################################################### |
| 184 | |
| 185 | define all-subdir-java-files |
| 186 | $(call all-java-files-under,.) |
| 187 | endef |
| 188 | |
| 189 | ########################################################### |
| 190 | ## Find all of the c files under the named directories. |
| 191 | ## Meant to be used like: |
| 192 | ## SRC_FILES := $(call all-c-files-under,src tests) |
| 193 | ########################################################### |
| 194 | |
| 195 | define all-c-files-under |
| 196 | $(patsubst ./%,%, \ |
| 197 | $(shell cd $(LOCAL_PATH) ; \ |
Conley Owens | f435739 | 2012-10-02 10:32:00 -0700 | [diff] [blame] | 198 | find -L $(1) -name "*.c" -and -not -name ".*") \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 199 | ) |
| 200 | endef |
| 201 | |
| 202 | ########################################################### |
| 203 | ## Find all of the c files from here. Meant to be used like: |
| 204 | ## SRC_FILES := $(call all-subdir-c-files) |
| 205 | ########################################################### |
| 206 | |
| 207 | define all-subdir-c-files |
| 208 | $(call all-c-files-under,.) |
| 209 | endef |
| 210 | |
| 211 | ########################################################### |
| 212 | ## Find all files named "I*.aidl" under the named directories, |
| 213 | ## which must be relative to $(LOCAL_PATH). The returned list |
| 214 | ## is relative to $(LOCAL_PATH). |
| 215 | ########################################################### |
| 216 | |
| 217 | define all-Iaidl-files-under |
| 218 | $(patsubst ./%,%, \ |
| 219 | $(shell cd $(LOCAL_PATH) ; \ |
Conley Owens | f435739 | 2012-10-02 10:32:00 -0700 | [diff] [blame] | 220 | find -L $(1) -name "I*.aidl" -and -not -name ".*") \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 221 | ) |
| 222 | endef |
| 223 | |
| 224 | ########################################################### |
| 225 | ## Find all of the "I*.aidl" files under $(LOCAL_PATH). |
| 226 | ########################################################### |
| 227 | |
| 228 | define all-subdir-Iaidl-files |
| 229 | $(call all-Iaidl-files-under,.) |
| 230 | endef |
| 231 | |
| 232 | ########################################################### |
Bjorn Bringert | a89c990 | 2010-02-02 17:36:20 +0000 | [diff] [blame] | 233 | ## Find all of the logtags files under the named directories. |
| 234 | ## Meant to be used like: |
| 235 | ## SRC_FILES := $(call all-logtags-files-under,src) |
| 236 | ########################################################### |
| 237 | |
| 238 | define all-logtags-files-under |
| 239 | $(patsubst ./%,%, \ |
| 240 | $(shell cd $(LOCAL_PATH) ; \ |
Conley Owens | f435739 | 2012-10-02 10:32:00 -0700 | [diff] [blame] | 241 | find -L $(1) -name "*.logtags" -and -not -name ".*") \ |
Bjorn Bringert | a89c990 | 2010-02-02 17:36:20 +0000 | [diff] [blame] | 242 | ) |
| 243 | endef |
| 244 | |
| 245 | ########################################################### |
Ying Wang | a5fc87a | 2010-11-02 18:43:16 -0700 | [diff] [blame] | 246 | ## Find all of the .proto files under the named directories. |
| 247 | ## Meant to be used like: |
| 248 | ## SRC_FILES := $(call all-proto-files-under,src) |
| 249 | ########################################################### |
| 250 | |
| 251 | define all-proto-files-under |
| 252 | $(patsubst ./%,%, \ |
| 253 | $(shell cd $(LOCAL_PATH) ; \ |
Conley Owens | f435739 | 2012-10-02 10:32:00 -0700 | [diff] [blame] | 254 | find -L $(1) -name "*.proto" -and -not -name ".*") \ |
Ying Wang | a5fc87a | 2010-11-02 18:43:16 -0700 | [diff] [blame] | 255 | ) |
| 256 | endef |
| 257 | |
| 258 | ########################################################### |
Ying Wang | 0bd59a0 | 2010-07-15 17:17:52 -0700 | [diff] [blame] | 259 | ## Find all of the RenderScript files under the named directories. |
| 260 | ## Meant to be used like: |
| 261 | ## SRC_FILES := $(call all-renderscript-files-under,src) |
| 262 | ########################################################### |
| 263 | |
| 264 | define all-renderscript-files-under |
| 265 | $(patsubst ./%,%, \ |
| 266 | $(shell cd $(LOCAL_PATH) ; \ |
Stephen Hines | d263757 | 2012-10-11 22:08:57 -0700 | [diff] [blame] | 267 | find -L $(1) \( -name "*.rs" -or -name "*.fs" \) -and -not -name ".*") \ |
Ying Wang | 0bd59a0 | 2010-07-15 17:17:52 -0700 | [diff] [blame] | 268 | ) |
| 269 | endef |
| 270 | |
| 271 | ########################################################### |
Jean-Baptiste Queru | 0a3cfdc | 2009-12-17 17:47:28 -0800 | [diff] [blame] | 272 | ## Find all of the html files under the named directories. |
| 273 | ## Meant to be used like: |
| 274 | ## SRC_FILES := $(call all-html-files-under,src tests) |
| 275 | ########################################################### |
| 276 | |
| 277 | define all-html-files-under |
| 278 | $(patsubst ./%,%, \ |
| 279 | $(shell cd $(LOCAL_PATH) ; \ |
Conley Owens | f435739 | 2012-10-02 10:32:00 -0700 | [diff] [blame] | 280 | find -L $(1) -name "*.html" -and -not -name ".*") \ |
Jean-Baptiste Queru | 0a3cfdc | 2009-12-17 17:47:28 -0800 | [diff] [blame] | 281 | ) |
| 282 | endef |
| 283 | |
| 284 | ########################################################### |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 285 | ## Find all of the html files from here. Meant to be used like: |
| 286 | ## SRC_FILES := $(call all-subdir-html-files) |
| 287 | ########################################################### |
| 288 | |
| 289 | define all-subdir-html-files |
Jean-Baptiste Queru | 0a3cfdc | 2009-12-17 17:47:28 -0800 | [diff] [blame] | 290 | $(call all-html-files-under,.) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 291 | endef |
| 292 | |
| 293 | ########################################################### |
| 294 | ## Find all of the files matching pattern |
| 295 | ## SRC_FILES := $(call find-subdir-files, <pattern>) |
| 296 | ########################################################### |
| 297 | |
| 298 | define find-subdir-files |
Conley Owens | f435739 | 2012-10-02 10:32:00 -0700 | [diff] [blame] | 299 | $(patsubst ./%,%,$(shell cd $(LOCAL_PATH) ; find -L $(1))) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 300 | endef |
| 301 | |
| 302 | ########################################################### |
| 303 | # find the files in the subdirectory $1 of LOCAL_DIR |
| 304 | # matching pattern $2, filtering out files $3 |
| 305 | # e.g. |
| 306 | # SRC_FILES += $(call find-subdir-subdir-files, \ |
| 307 | # css, *.cpp, DontWantThis.cpp) |
| 308 | ########################################################### |
| 309 | |
| 310 | define find-subdir-subdir-files |
| 311 | $(filter-out $(patsubst %,$(1)/%,$(3)),$(patsubst ./%,%,$(shell cd \ |
Conley Owens | f435739 | 2012-10-02 10:32:00 -0700 | [diff] [blame] | 312 | $(LOCAL_PATH) ; find -L $(1) -maxdepth 1 -name $(2)))) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 313 | endef |
| 314 | |
| 315 | ########################################################### |
| 316 | ## Find all of the files matching pattern |
| 317 | ## SRC_FILES := $(call all-subdir-java-files) |
| 318 | ########################################################### |
| 319 | |
| 320 | define find-subdir-assets |
| 321 | $(if $(1),$(patsubst ./%,%, \ |
Ying Wang | 6ab5d6a | 2011-08-10 16:05:51 -0700 | [diff] [blame] | 322 | $(shell if [ -d $(1) ] ; then cd $(1) ; find ./ -not -name '.*' -and -type f -and -not -type l ; fi)), \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 323 | $(warning Empty argument supplied to find-subdir-assets) \ |
| 324 | ) |
| 325 | endef |
| 326 | |
| 327 | ########################################################### |
| 328 | ## Find various file types in a list of directories relative to $(LOCAL_PATH) |
| 329 | ########################################################### |
| 330 | |
| 331 | define find-other-java-files |
| 332 | $(call find-subdir-files,$(1) -name "*.java" -and -not -name ".*") |
| 333 | endef |
| 334 | |
| 335 | define find-other-html-files |
| 336 | $(call find-subdir-files,$(1) -name "*.html" -and -not -name ".*") |
| 337 | endef |
| 338 | |
| 339 | ########################################################### |
| 340 | ## Scan through each directory of $(1) looking for files |
| 341 | ## that match $(2) using $(wildcard). Useful for seeing if |
| 342 | ## a given directory or one of its parents contains |
| 343 | ## a particular file. Returns the first match found, |
| 344 | ## starting furthest from the root. |
| 345 | ########################################################### |
| 346 | |
| 347 | define find-parent-file |
| 348 | $(strip \ |
Ying Wang | a67ce69 | 2011-03-03 13:29:38 -0800 | [diff] [blame] | 349 | $(eval _fpf := $(wildcard $(foreach f, $(2), $(strip $(1))/$(f)))) \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 350 | $(if $(_fpf),$(_fpf), \ |
| 351 | $(if $(filter-out ./ .,$(1)), \ |
| 352 | $(call find-parent-file,$(patsubst %/,%,$(dir $(1))),$(2)) \ |
| 353 | ) \ |
| 354 | ) \ |
| 355 | ) |
| 356 | endef |
| 357 | |
| 358 | ########################################################### |
| 359 | ## Function we can evaluate to introduce a dynamic dependency |
| 360 | ########################################################### |
| 361 | |
| 362 | define add-dependency |
| 363 | $(1): $(2) |
| 364 | endef |
| 365 | |
| 366 | ########################################################### |
| 367 | ## Set up the dependencies for a prebuilt target |
| 368 | ## $(call add-prebuilt-file, srcfile, [targetclass]) |
| 369 | ########################################################### |
| 370 | |
| 371 | define add-prebuilt-file |
| 372 | $(eval $(include-prebuilt)) |
| 373 | endef |
| 374 | |
| 375 | define include-prebuilt |
| 376 | include $$(CLEAR_VARS) |
| 377 | LOCAL_SRC_FILES := $(1) |
| 378 | LOCAL_BUILT_MODULE_STEM := $(1) |
| 379 | LOCAL_MODULE_SUFFIX := $$(suffix $(1)) |
| 380 | LOCAL_MODULE := $$(basename $(1)) |
| 381 | LOCAL_MODULE_CLASS := $(2) |
| 382 | include $$(BUILD_PREBUILT) |
| 383 | endef |
| 384 | |
| 385 | ########################################################### |
| 386 | ## do multiple prebuilts |
| 387 | ## $(call target class, files ...) |
| 388 | ########################################################### |
| 389 | |
| 390 | define add-prebuilt-files |
| 391 | $(foreach f,$(2),$(call add-prebuilt-file,$f,$(1))) |
| 392 | endef |
| 393 | |
| 394 | |
| 395 | |
| 396 | ########################################################### |
| 397 | ## The intermediates directory. Where object files go for |
| 398 | ## a given target. We could technically get away without |
| 399 | ## the "_intermediates" suffix on the directory, but it's |
| 400 | ## nice to be able to grep for that string to find out if |
| 401 | ## anyone's abusing the system. |
| 402 | ########################################################### |
| 403 | |
| 404 | # $(1): target class, like "APPS" |
| 405 | # $(2): target name, like "NotePad" |
| 406 | # $(3): if non-empty, this is a HOST target. |
| 407 | # $(4): if non-empty, force the intermediates to be COMMON |
| 408 | define intermediates-dir-for |
| 409 | $(strip \ |
| 410 | $(eval _idfClass := $(strip $(1))) \ |
| 411 | $(if $(_idfClass),, \ |
| 412 | $(error $(LOCAL_PATH): Class not defined in call to intermediates-dir-for)) \ |
| 413 | $(eval _idfName := $(strip $(2))) \ |
| 414 | $(if $(_idfName),, \ |
| 415 | $(error $(LOCAL_PATH): Name not defined in call to intermediates-dir-for)) \ |
| 416 | $(eval _idfPrefix := $(if $(strip $(3)),HOST,TARGET)) \ |
Ying Wang | a83940f | 2010-09-24 18:09:04 -0700 | [diff] [blame] | 417 | $(if $(filter $(_idfPrefix)-$(_idfClass),$(COMMON_MODULE_CLASSES))$(4), \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 418 | $(eval _idfIntBase := $($(_idfPrefix)_OUT_COMMON_INTERMEDIATES)) \ |
| 419 | , \ |
| 420 | $(eval _idfIntBase := $($(_idfPrefix)_OUT_INTERMEDIATES)) \ |
| 421 | ) \ |
| 422 | $(_idfIntBase)/$(_idfClass)/$(_idfName)_intermediates \ |
| 423 | ) |
| 424 | endef |
| 425 | |
| 426 | # Uses LOCAL_MODULE_CLASS, LOCAL_MODULE, and LOCAL_IS_HOST_MODULE |
| 427 | # to determine the intermediates directory. |
| 428 | # |
| 429 | # $(1): if non-empty, force the intermediates to be COMMON |
| 430 | define local-intermediates-dir |
| 431 | $(strip \ |
| 432 | $(if $(strip $(LOCAL_MODULE_CLASS)),, \ |
| 433 | $(error $(LOCAL_PATH): LOCAL_MODULE_CLASS not defined before call to local-intermediates-dir)) \ |
| 434 | $(if $(strip $(LOCAL_MODULE)),, \ |
| 435 | $(error $(LOCAL_PATH): LOCAL_MODULE not defined before call to local-intermediates-dir)) \ |
| 436 | $(call intermediates-dir-for,$(LOCAL_MODULE_CLASS),$(LOCAL_MODULE),$(LOCAL_IS_HOST_MODULE),$(1)) \ |
| 437 | ) |
| 438 | endef |
| 439 | |
| 440 | ########################################################### |
| 441 | ## Convert "path/to/libXXX.so" to "-lXXX". |
| 442 | ## Any "path/to/libXXX.a" elements pass through unchanged. |
| 443 | ########################################################### |
| 444 | |
| 445 | define normalize-libraries |
| 446 | $(foreach so,$(filter %.so,$(1)),-l$(patsubst lib%.so,%,$(notdir $(so))))\ |
| 447 | $(filter-out %.so,$(1)) |
| 448 | endef |
| 449 | |
| 450 | # TODO: change users to call the common version. |
| 451 | define normalize-host-libraries |
| 452 | $(call normalize-libraries,$(1)) |
| 453 | endef |
| 454 | |
| 455 | define normalize-target-libraries |
| 456 | $(call normalize-libraries,$(1)) |
| 457 | endef |
| 458 | |
| 459 | ########################################################### |
| 460 | ## Convert a list of short module names (e.g., "framework", "Browser") |
| 461 | ## into the list of files that are built for those modules. |
| 462 | ## NOTE: this won't return reliable results until after all |
| 463 | ## sub-makefiles have been included. |
| 464 | ## $(1): target list |
| 465 | ########################################################### |
| 466 | |
| 467 | define module-built-files |
| 468 | $(foreach module,$(1),$(ALL_MODULES.$(module).BUILT)) |
| 469 | endef |
| 470 | |
| 471 | ########################################################### |
| 472 | ## Convert a list of short modules names (e.g., "framework", "Browser") |
| 473 | ## into the list of files that are installed for those modules. |
| 474 | ## NOTE: this won't return reliable results until after all |
| 475 | ## sub-makefiles have been included. |
| 476 | ## $(1): target list |
| 477 | ########################################################### |
| 478 | |
| 479 | define module-installed-files |
| 480 | $(foreach module,$(1),$(ALL_MODULES.$(module).INSTALLED)) |
| 481 | endef |
| 482 | |
| 483 | ########################################################### |
Joe Onorato | 64d85d0 | 2009-04-09 19:31:12 -0700 | [diff] [blame] | 484 | ## Convert a list of short modules names (e.g., "framework", "Browser") |
| 485 | ## into the list of files that should be used when linking |
| 486 | ## against that module as a public API. |
| 487 | ## TODO: Allow this for more than JAVA_LIBRARIES modules |
| 488 | ## NOTE: this won't return reliable results until after all |
| 489 | ## sub-makefiles have been included. |
| 490 | ## $(1): target list |
| 491 | ########################################################### |
| 492 | |
| 493 | define module-stubs-files |
| 494 | $(foreach module,$(1),$(ALL_MODULES.$(module).STUBS)) |
| 495 | endef |
| 496 | |
| 497 | ########################################################### |
| 498 | ## Evaluates to the timestamp file for a doc module, which |
| 499 | ## is the dependency that should be used. |
| 500 | ## $(1): doc module |
| 501 | ########################################################### |
| 502 | |
| 503 | define doc-timestamp-for |
| 504 | $(OUT_DOCS)/$(strip $(1))-timestamp |
| 505 | endef |
| 506 | |
| 507 | |
| 508 | ########################################################### |
Ying Wang | 912f828 | 2010-09-28 17:27:56 -0700 | [diff] [blame] | 509 | ## Convert "core ext framework" to "out/.../javalib.jar ..." |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 510 | ## $(1): library list |
| 511 | ## $(2): Non-empty if IS_HOST_MODULE |
| 512 | ########################################################### |
| 513 | |
| 514 | # $(1): library name |
| 515 | # $(2): Non-empty if IS_HOST_MODULE |
| 516 | define _java-lib-dir |
| 517 | $(call intermediates-dir-for, \ |
Ying Wang | 912f828 | 2010-09-28 17:27:56 -0700 | [diff] [blame] | 518 | JAVA_LIBRARIES,$(1),$(2),COMMON) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 519 | endef |
| 520 | |
| 521 | # $(1): library name |
| 522 | # $(2): Non-empty if IS_HOST_MODULE |
| 523 | define _java-lib-full-classes.jar |
Ying Wang | 912f828 | 2010-09-28 17:27:56 -0700 | [diff] [blame] | 524 | $(call _java-lib-dir,$(1),$(2))/classes$(COMMON_JAVA_PACKAGE_SUFFIX) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 525 | endef |
| 526 | |
| 527 | # $(1): library name list |
| 528 | # $(2): Non-empty if IS_HOST_MODULE |
| 529 | define java-lib-files |
| 530 | $(foreach lib,$(1),$(call _java-lib-full-classes.jar,$(lib),$(2))) |
| 531 | endef |
| 532 | |
| 533 | # $(1): library name |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 534 | # $(2): Non-empty if IS_HOST_MODULE |
| 535 | define _java-lib-full-dep |
Ying Wang | 912f828 | 2010-09-28 17:27:56 -0700 | [diff] [blame] | 536 | $(call _java-lib-dir,$(1),$(2))/javalib$(COMMON_JAVA_PACKAGE_SUFFIX) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 537 | endef |
| 538 | |
| 539 | # $(1): library name list |
| 540 | # $(2): Non-empty if IS_HOST_MODULE |
| 541 | define java-lib-deps |
| 542 | $(foreach lib,$(1),$(call _java-lib-full-dep,$(lib),$(2))) |
| 543 | endef |
| 544 | |
| 545 | ########################################################### |
Joe Onorato | 8dc8faa | 2010-09-14 13:09:48 -0400 | [diff] [blame] | 546 | ## Run rot13 on a string |
| 547 | ## $(1): the string. Must be one line. |
| 548 | ########################################################### |
| 549 | define rot13 |
| 550 | $(shell echo $(1) | tr 'a-zA-Z' 'n-za-mN-ZA-M') |
| 551 | endef |
| 552 | |
| 553 | |
| 554 | ########################################################### |
| 555 | ## Returns true if $(1) and $(2) are equal. Returns |
| 556 | ## the empty string if they are not equal. |
| 557 | ########################################################### |
| 558 | define streq |
| 559 | $(strip $(if $(strip $(1)),\ |
| 560 | $(if $(strip $(2)),\ |
| 561 | $(if $(filter-out __,_$(subst $(strip $(1)),,$(strip $(2)))$(subst $(strip $(2)),,$(strip $(1)))_),,true), \ |
| 562 | ),\ |
| 563 | $(if $(strip $(2)),\ |
| 564 | ,\ |
| 565 | true)\ |
| 566 | )) |
| 567 | endef |
| 568 | |
| 569 | ########################################################### |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 570 | ## Convert "a b c" into "a:b:c" |
| 571 | ########################################################### |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 572 | define normalize-path-list |
| 573 | $(subst $(space),:,$(strip $(1))) |
| 574 | endef |
| 575 | |
| 576 | ########################################################### |
Joe Onorato | 64d85d0 | 2009-04-09 19:31:12 -0700 | [diff] [blame] | 577 | ## Read the word out of a colon-separated list of words. |
| 578 | ## This has the same behavior as the built-in function |
| 579 | ## $(word n,str). |
| 580 | ## |
| 581 | ## The individual words may not contain spaces. |
| 582 | ## |
| 583 | ## $(1): 1 based index |
| 584 | ## $(2): value of the form a:b:c... |
| 585 | ########################################################### |
| 586 | |
| 587 | define word-colon |
| 588 | $(word $(1),$(subst :,$(space),$(2))) |
| 589 | endef |
| 590 | |
| 591 | ########################################################### |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 592 | ## Convert "a=b c= d e = f" into "a=b c=d e=f" |
| 593 | ## |
| 594 | ## $(1): list to collapse |
| 595 | ## $(2): if set, separator word; usually "=", ":", or ":=" |
| 596 | ## Defaults to "=" if not set. |
| 597 | ########################################################### |
| 598 | |
| 599 | define collapse-pairs |
| 600 | $(eval _cpSEP := $(strip $(if $(2),$(2),=)))\ |
| 601 | $(subst $(space)$(_cpSEP)$(space),$(_cpSEP),$(strip \ |
| 602 | $(subst $(_cpSEP), $(_cpSEP) ,$(1)))) |
| 603 | endef |
| 604 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 605 | ########################################################### |
Ying Wang | 7e8d442 | 2011-06-17 17:05:35 -0700 | [diff] [blame] | 606 | ## Given a list of pairs, if multiple pairs have the same |
| 607 | ## first components, keep only the first pair. |
| 608 | ## |
| 609 | ## $(1): list of pairs |
| 610 | ## $(2): the separator word, such as ":", "=", etc. |
| 611 | define uniq-pairs-by-first-component |
| 612 | $(eval _upbfc_fc_set :=)\ |
| 613 | $(strip $(foreach w,$(1), $(eval _first := $(word 1,$(subst $(2),$(space),$(w))))\ |
| 614 | $(if $(filter $(_upbfc_fc_set),$(_first)),,$(w)\ |
| 615 | $(eval _upbfc_fc_set += $(_first)))))\ |
| 616 | $(eval _upbfc_fc_set :=)\ |
| 617 | $(eval _first:=) |
| 618 | endef |
| 619 | |
| 620 | ########################################################### |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 621 | ## MODULE_TAG set operations |
| 622 | ########################################################### |
| 623 | |
| 624 | # Given a list of tags, return the targets that specify |
| 625 | # any of those tags. |
| 626 | # $(1): tag list |
| 627 | define modules-for-tag-list |
| 628 | $(sort $(foreach tag,$(1),$(ALL_MODULE_TAGS.$(tag)))) |
| 629 | endef |
| 630 | |
| 631 | # Same as modules-for-tag-list, but operates on |
| 632 | # ALL_MODULE_NAME_TAGS. |
| 633 | # $(1): tag list |
| 634 | define module-names-for-tag-list |
| 635 | $(sort $(foreach tag,$(1),$(ALL_MODULE_NAME_TAGS.$(tag)))) |
| 636 | endef |
| 637 | |
| 638 | # Given an accept and reject list, find the matching |
| 639 | # set of targets. If a target has multiple tags and |
| 640 | # any of them are rejected, the target is rejected. |
| 641 | # Reject overrides accept. |
| 642 | # $(1): list of tags to accept |
| 643 | # $(2): list of tags to reject |
| 644 | #TODO(dbort): do $(if $(strip $(1)),$(1),$(ALL_MODULE_TAGS)) |
Jean-Baptiste Queru | 75127b7 | 2010-01-07 11:44:22 -0800 | [diff] [blame] | 645 | #TODO(jbq): as of 20100106 nobody uses the second parameter |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 646 | define get-tagged-modules |
| 647 | $(filter-out \ |
| 648 | $(call modules-for-tag-list,$(2)), \ |
| 649 | $(call modules-for-tag-list,$(1))) |
| 650 | endef |
| 651 | |
Joe Onorato | 64d85d0 | 2009-04-09 19:31:12 -0700 | [diff] [blame] | 652 | ########################################################### |
| 653 | ## Append a leaf to a base path. Properly deals with |
| 654 | ## base paths ending in /. |
| 655 | ## |
| 656 | ## $(1): base path |
| 657 | ## $(2): leaf path |
| 658 | ########################################################### |
| 659 | |
| 660 | define append-path |
| 661 | $(subst //,/,$(1)/$(2)) |
| 662 | endef |
| 663 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 664 | |
| 665 | ########################################################### |
| 666 | ## Package filtering |
| 667 | ########################################################### |
| 668 | |
| 669 | # Given a list of installed modules (short or long names) |
| 670 | # return a list of the packages (yes, .apk packages, not |
| 671 | # modules in general) that are overridden by this list and, |
| 672 | # therefore, should not be installed. |
| 673 | # $(1): mixed list of installed modules |
| 674 | # TODO: This is fragile; find a reliable way to get this information. |
| 675 | define _get-package-overrides |
| 676 | $(eval ### Discard any words containing slashes, unless they end in .apk, \ |
| 677 | ### in which case trim off the directory component and the suffix. \ |
| 678 | ### If there are no slashes, keep the entire word.) |
| 679 | $(eval _gpo_names := $(subst /,@@@ @@@,$(1))) |
| 680 | $(eval _gpo_names := \ |
| 681 | $(filter %.apk,$(_gpo_names)) \ |
| 682 | $(filter-out %@@@ @@@%,$(_gpo_names))) |
| 683 | $(eval _gpo_names := $(patsubst %.apk,%,$(_gpo_names))) |
| 684 | $(eval _gpo_names := $(patsubst @@@%,%,$(_gpo_names))) |
| 685 | |
| 686 | $(eval ### Remove any remaining words that contain dots.) |
| 687 | $(eval _gpo_names := $(subst .,@@@ @@@,$(_gpo_names))) |
| 688 | $(eval _gpo_names := $(filter-out %@@@ @@@%,$(_gpo_names))) |
| 689 | |
| 690 | $(eval ### Now we have a list of any words that could possibly refer to \ |
| 691 | ### packages, although there may be words that do not. Only \ |
| 692 | ### real packages will be present under PACKAGES.*, though.) |
| 693 | $(foreach _gpo_name,$(_gpo_names),$(PACKAGES.$(_gpo_name).OVERRIDES)) |
| 694 | endef |
| 695 | |
| 696 | define get-package-overrides |
Conley Owens | d7a1a9b | 2011-12-22 09:46:19 -0800 | [diff] [blame] | 697 | $(sort $(strip $(call _get-package-overrides,$(1)))) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 698 | endef |
| 699 | |
| 700 | ########################################################### |
| 701 | ## Output the command lines, or not |
| 702 | ########################################################### |
| 703 | |
| 704 | ifeq ($(strip $(SHOW_COMMANDS)),) |
| 705 | define pretty |
| 706 | @echo $1 |
| 707 | endef |
| 708 | hide := @ |
| 709 | else |
| 710 | define pretty |
| 711 | endef |
| 712 | hide := |
| 713 | endif |
| 714 | |
| 715 | ########################################################### |
| 716 | ## Dump the variables that are associated with targets |
| 717 | ########################################################### |
| 718 | |
| 719 | define dump-module-variables |
| 720 | @echo all_dependencies=$^ |
| 721 | @echo PRIVATE_YACCFLAGS=$(PRIVATE_YACCFLAGS); |
| 722 | @echo PRIVATE_CFLAGS=$(PRIVATE_CFLAGS); |
| 723 | @echo PRIVATE_CPPFLAGS=$(PRIVATE_CPPFLAGS); |
| 724 | @echo PRIVATE_DEBUG_CFLAGS=$(PRIVATE_DEBUG_CFLAGS); |
| 725 | @echo PRIVATE_C_INCLUDES=$(PRIVATE_C_INCLUDES); |
| 726 | @echo PRIVATE_LDFLAGS=$(PRIVATE_LDFLAGS); |
| 727 | @echo PRIVATE_LDLIBS=$(PRIVATE_LDLIBS); |
| 728 | @echo PRIVATE_ARFLAGS=$(PRIVATE_ARFLAGS); |
| 729 | @echo PRIVATE_AAPT_FLAGS=$(PRIVATE_AAPT_FLAGS); |
| 730 | @echo PRIVATE_DX_FLAGS=$(PRIVATE_DX_FLAGS); |
Brian Carlstrom | f184a0f | 2010-02-01 11:13:32 -0800 | [diff] [blame] | 731 | @echo PRIVATE_JAVACFLAGS=$(PRIVATE_JAVACFLAGS); |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 732 | @echo PRIVATE_JAVA_LIBRARIES=$(PRIVATE_JAVA_LIBRARIES); |
| 733 | @echo PRIVATE_ALL_SHARED_LIBRARIES=$(PRIVATE_ALL_SHARED_LIBRARIES); |
| 734 | @echo PRIVATE_ALL_STATIC_LIBRARIES=$(PRIVATE_ALL_STATIC_LIBRARIES); |
| 735 | @echo PRIVATE_ALL_WHOLE_STATIC_LIBRARIES=$(PRIVATE_ALL_WHOLE_STATIC_LIBRARIES); |
| 736 | @echo PRIVATE_ALL_OBJECTS=$(PRIVATE_ALL_OBJECTS); |
Jeff Brown | 703e7c6 | 2011-02-04 20:15:00 -0800 | [diff] [blame] | 737 | @echo PRIVATE_NO_CRT=$(PRIVATE_NO_CRT); |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 738 | endef |
| 739 | |
| 740 | ########################################################### |
| 741 | ## Commands for using sed to replace given variable values |
| 742 | ########################################################### |
| 743 | |
| 744 | define transform-variables |
| 745 | @mkdir -p $(dir $@) |
| 746 | @echo "Sed: $(if $(PRIVATE_MODULE),$(PRIVATE_MODULE),$@) <= $<" |
| 747 | $(hide) sed $(foreach var,$(REPLACE_VARS),-e "s/{{$(var)}}/$(subst /,\/,$(PWD)/$($(var)))/g") $< >$@ |
| 748 | $(hide) if [ "$(suffix $@)" = ".sh" ]; then chmod a+rx $@; fi |
| 749 | endef |
| 750 | |
| 751 | |
| 752 | ########################################################### |
| 753 | ## Commands for munging the dependency files GCC generates |
| 754 | ########################################################### |
Ying Wang | c23f4ef | 2012-09-07 17:04:06 -0700 | [diff] [blame] | 755 | # $(1): the input .d file |
| 756 | # $(2): the output .P file |
| 757 | define transform-d-to-p-args |
| 758 | $(hide) cp $(1) $(2); \ |
| 759 | sed -e 's/#.*//' -e 's/^[^:]*: *//' -e 's/ *\\$$//' \ |
| 760 | -e '/^$$/ d' -e 's/$$/ :/' < $(1) >> $(2); \ |
| 761 | rm -f $(1) |
| 762 | endef |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 763 | |
| 764 | define transform-d-to-p |
Ying Wang | c23f4ef | 2012-09-07 17:04:06 -0700 | [diff] [blame] | 765 | $(call transform-d-to-p-args,$(@:%.o=%.d),$(@:%.o=%.P)) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 766 | endef |
| 767 | |
| 768 | ########################################################### |
| 769 | ## Commands for running lex |
| 770 | ########################################################### |
| 771 | |
| 772 | define transform-l-to-cpp |
| 773 | @mkdir -p $(dir $@) |
| 774 | @echo "Lex: $(PRIVATE_MODULE) <= $<" |
| 775 | $(hide) $(LEX) -o$@ $< |
| 776 | endef |
| 777 | |
| 778 | ########################################################### |
| 779 | ## Commands for running yacc |
| 780 | ## |
| 781 | ## Because the extension of c++ files can change, the |
| 782 | ## extension must be specified in $1. |
| 783 | ## E.g, "$(call transform-y-to-cpp,.cpp)" |
| 784 | ########################################################### |
| 785 | |
| 786 | define transform-y-to-cpp |
| 787 | @mkdir -p $(dir $@) |
| 788 | @echo "Yacc: $(PRIVATE_MODULE) <= $<" |
| 789 | $(YACC) $(PRIVATE_YACCFLAGS) -o $@ $< |
| 790 | touch $(@:$1=$(YACC_HEADER_SUFFIX)) |
| 791 | echo '#ifndef '$(@F:$1=_h) > $(@:$1=.h) |
| 792 | echo '#define '$(@F:$1=_h) >> $(@:$1=.h) |
| 793 | cat $(@:$1=$(YACC_HEADER_SUFFIX)) >> $(@:$1=.h) |
| 794 | echo '#endif' >> $(@:$1=.h) |
| 795 | rm -f $(@:$1=$(YACC_HEADER_SUFFIX)) |
| 796 | endef |
| 797 | |
Ying Wang | 0bd59a0 | 2010-07-15 17:17:52 -0700 | [diff] [blame] | 798 | ########################################################### |
Tim Murray | a7aa800 | 2012-10-29 16:06:00 -0700 | [diff] [blame] | 799 | ## Commands to compile RenderScript to Java |
Ying Wang | 0bd59a0 | 2010-07-15 17:17:52 -0700 | [diff] [blame] | 800 | ########################################################### |
Ying Wang | 0bd59a0 | 2010-07-15 17:17:52 -0700 | [diff] [blame] | 801 | |
| 802 | define transform-renderscripts-to-java-and-bc |
| 803 | @echo "RenderScript: $(PRIVATE_MODULE) <= $(PRIVATE_RS_SOURCE_FILES)" |
| 804 | $(hide) rm -rf $(PRIVATE_RS_OUTPUT_DIR) |
| 805 | $(hide) mkdir -p $(PRIVATE_RS_OUTPUT_DIR)/res/raw |
| 806 | $(hide) mkdir -p $(PRIVATE_RS_OUTPUT_DIR)/src |
Ying Wang | 7d83ef8 | 2011-05-25 17:16:22 -0700 | [diff] [blame] | 807 | $(hide) $(PRIVATE_RS_CC) \ |
Ying Wang | ebfddaa | 2010-07-30 18:37:29 -0700 | [diff] [blame] | 808 | -o $(PRIVATE_RS_OUTPUT_DIR)/res/raw \ |
| 809 | -p $(PRIVATE_RS_OUTPUT_DIR)/src \ |
Ying Wang | 24e1c01 | 2010-10-07 18:57:57 -0700 | [diff] [blame] | 810 | -d $(PRIVATE_RS_OUTPUT_DIR) \ |
| 811 | -a $@ -MD \ |
Stephen Hines | c963eae | 2011-08-10 13:53:05 -0700 | [diff] [blame] | 812 | $(addprefix -target-api , $(PRIVATE_RS_TARGET_API)) \ |
Stephen Hines | 914f7a2 | 2011-12-06 18:43:24 -0800 | [diff] [blame] | 813 | $(PRIVATE_RS_FLAGS) \ |
Ying Wang | 5128027 | 2010-09-01 13:28:52 -0700 | [diff] [blame] | 814 | $(foreach inc,$(PRIVATE_RS_INCLUDES),$(addprefix -I , $(inc))) \ |
Ying Wang | ebfddaa | 2010-07-30 18:37:29 -0700 | [diff] [blame] | 815 | $(PRIVATE_RS_SOURCE_FILES) |
Ying Wang | 0bd59a0 | 2010-07-15 17:17:52 -0700 | [diff] [blame] | 816 | $(hide) mkdir -p $(dir $@) |
| 817 | $(hide) touch $@ |
| 818 | endef |
| 819 | |
Stephen Hines | e719f28 | 2012-11-28 16:52:41 -0800 | [diff] [blame] | 820 | define transform-bc-to-so |
| 821 | @echo "Renderscript compatibility" |
| 822 | $(hide) mkdir -p $(dir $@) |
Stephen Hines | f692513 | 2012-12-17 14:23:14 -0800 | [diff] [blame] | 823 | $(hide) $(BCC_COMPAT) -O3 -o $(dir $@)/$(notdir $(<:.bc=.o)) -fPIC -shared \ |
| 824 | -rt-path $(PRIVATE_LIBCLCORE) $< |
Stephen Hines | 7d6ec71 | 2012-12-13 19:24:50 -0800 | [diff] [blame] | 825 | $(hide) $(PRIVATE_CXX) -shared -Wl,-soname,$(notdir $@) -nostdlib \ |
Stephen Hines | f692513 | 2012-12-17 14:23:14 -0800 | [diff] [blame] | 826 | -Wl,-rpath,\$$ORIGIN/../lib \ |
Stephen Hines | 9541f58 | 2013-01-18 16:27:23 -0800 | [diff] [blame] | 827 | $(dir $@)/$(notdir $(<:.bc=.o)) \ |
| 828 | $(PRIVATE_COMPILER_RT) \ |
| 829 | -o $@ -L prebuilts/gcc/ \ |
Tim Murray | 99b060f | 2013-02-01 11:55:10 -0800 | [diff] [blame] | 830 | -L $(TARGET_OUT_INTERMEDIATE_LIBRARIES) $(PRIVATE_LIBPATH) \ |
Stephen Hines | 6adffc1 | 2013-02-11 20:03:38 -0800 | [diff] [blame] | 831 | -lRSSupport -lm |
Stephen Hines | e719f28 | 2012-11-28 16:52:41 -0800 | [diff] [blame] | 832 | endef |
| 833 | |
Tim Murray | a7aa800 | 2012-10-29 16:06:00 -0700 | [diff] [blame] | 834 | ########################################################### |
| 835 | ## Commands to compile RenderScript to C++ |
| 836 | ########################################################### |
| 837 | |
| 838 | define transform-renderscripts-to-cpp-and-bc |
| 839 | @echo "RenderScript: $(PRIVATE_MODULE) <= $(PRIVATE_RS_SOURCE_FILES)" |
| 840 | $(hide) rm -rf $(PRIVATE_RS_OUTPUT_DIR) |
| 841 | $(hide) mkdir -p $(PRIVATE_RS_OUTPUT_DIR)/ |
| 842 | $(hide) $(PRIVATE_RS_CC) \ |
| 843 | -o $(PRIVATE_RS_OUTPUT_DIR)/ \ |
| 844 | -d $(PRIVATE_RS_OUTPUT_DIR) \ |
| 845 | -a $@ -MD \ |
| 846 | -reflect-c++ \ |
| 847 | $(PRIVATE_RS_FLAGS) \ |
| 848 | $(foreach inc,$(PRIVATE_RS_INCLUDES),$(addprefix -I , $(inc))) \ |
| 849 | $(PRIVATE_RS_SOURCE_FILES) |
| 850 | $(hide) mkdir -p $(dir $@) |
| 851 | $(hide) touch $@ |
| 852 | endef |
| 853 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 854 | |
| 855 | ########################################################### |
| 856 | ## Commands for running aidl |
| 857 | ########################################################### |
| 858 | |
| 859 | define transform-aidl-to-java |
| 860 | @mkdir -p $(dir $@) |
| 861 | @echo "Aidl: $(PRIVATE_MODULE) <= $<" |
| 862 | $(hide) $(AIDL) -d$(patsubst %.java,%.P,$@) $(PRIVATE_AIDL_FLAGS) $< $@ |
| 863 | endef |
| 864 | #$(AIDL) $(PRIVATE_AIDL_FLAGS) $< - | indent -nut -br -npcs -l1000 > $@ |
| 865 | |
| 866 | |
Doug Zongker | 9bd4962 | 2009-11-30 14:28:59 -0800 | [diff] [blame] | 867 | ########################################################### |
| 868 | ## Commands for running java-event-log-tags.py |
| 869 | ########################################################### |
| 870 | |
| 871 | define transform-logtags-to-java |
| 872 | @mkdir -p $(dir $@) |
| 873 | @echo "logtags: $@ <= $<" |
Doug Zongker | abfbbe2 | 2010-02-16 14:32:08 -0800 | [diff] [blame] | 874 | $(hide) $(JAVATAGS) -o $@ $^ |
Doug Zongker | 9bd4962 | 2009-11-30 14:28:59 -0800 | [diff] [blame] | 875 | endef |
| 876 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 877 | |
| 878 | ########################################################### |
Ying Wang | a5fc87a | 2010-11-02 18:43:16 -0700 | [diff] [blame] | 879 | ## Commands for running protoc to compile .proto into .java |
| 880 | ########################################################### |
| 881 | |
| 882 | define transform-proto-to-java |
| 883 | @mkdir -p $(dir $@) |
| 884 | @echo "Protoc: $@ <= $(PRIVATE_PROTO_SRC_FILES)" |
| 885 | @rm -rf $(PRIVATE_PROTO_JAVA_OUTPUT_DIR) |
| 886 | @mkdir -p $(PRIVATE_PROTO_JAVA_OUTPUT_DIR) |
Bjorn Bringert | 20f5efd | 2011-10-18 16:08:27 +0100 | [diff] [blame] | 887 | $(hide) for f in $(PRIVATE_PROTO_SRC_FILES); do \ |
| 888 | $(PROTOC) \ |
| 889 | $(addprefix --proto_path=, $(PRIVATE_PROTO_INCLUDES)) \ |
| 890 | $(PRIVATE_PROTO_JAVA_OUTPUT_OPTION)=$(PRIVATE_PROTO_JAVA_OUTPUT_DIR) \ |
| 891 | $(PRIVATE_PROTOC_FLAGS) \ |
Ying Wang | 707328a | 2012-01-30 11:56:07 -0800 | [diff] [blame] | 892 | $$f || exit 33; \ |
Bjorn Bringert | 20f5efd | 2011-10-18 16:08:27 +0100 | [diff] [blame] | 893 | done |
Ying Wang | a5fc87a | 2010-11-02 18:43:16 -0700 | [diff] [blame] | 894 | $(hide) touch $@ |
| 895 | endef |
| 896 | |
| 897 | ###################################################################### |
| 898 | ## Commands for running protoc to compile .proto into .pb.cc and .pb.h |
| 899 | ###################################################################### |
| 900 | define transform-proto-to-cc |
| 901 | @mkdir -p $(dir $@) |
| 902 | @echo "Protoc: $@ <= $<" |
| 903 | $(hide) $(PROTOC) \ |
| 904 | $(addprefix --proto_path=, $(PRIVATE_PROTO_INCLUDES)) \ |
Ying Wang | 33c0d95 | 2010-11-05 11:30:58 -0700 | [diff] [blame] | 905 | $(PRIVATE_PROTOC_FLAGS) \ |
Ying Wang | a5fc87a | 2010-11-02 18:43:16 -0700 | [diff] [blame] | 906 | --cpp_out=$(PRIVATE_PROTO_CC_OUTPUT_DIR) $< |
| 907 | endef |
| 908 | |
| 909 | |
| 910 | ########################################################### |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 911 | ## Commands for running gcc to compile a C++ file |
| 912 | ########################################################### |
| 913 | |
| 914 | define transform-cpp-to-o |
| 915 | @mkdir -p $(dir $@) |
| 916 | @echo "target $(PRIVATE_ARM_MODE) C++: $(PRIVATE_MODULE) <= $<" |
| 917 | $(hide) $(PRIVATE_CXX) \ |
Ying Wang | ddbcad8 | 2011-04-18 11:45:44 -0700 | [diff] [blame] | 918 | $(addprefix -I , $(PRIVATE_C_INCLUDES)) \ |
Andrew Boie | 85f3b21 | 2012-07-11 12:14:56 -0700 | [diff] [blame] | 919 | $(shell cat $(PRIVATE_IMPORT_INCLUDES)) \ |
Ying Wang | 4761e56 | 2011-04-12 11:06:35 -0700 | [diff] [blame] | 920 | $(addprefix -isystem ,\ |
| 921 | $(if $(PRIVATE_NO_DEFAULT_COMPILER_FLAGS),, \ |
| 922 | $(filter-out $(PRIVATE_C_INCLUDES), \ |
Ying Wang | ddbcad8 | 2011-04-18 11:45:44 -0700 | [diff] [blame] | 923 | $(PRIVATE_TARGET_PROJECT_INCLUDES) \ |
Ying Wang | 4761e56 | 2011-04-12 11:06:35 -0700 | [diff] [blame] | 924 | $(PRIVATE_TARGET_C_INCLUDES)))) \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 925 | -c \ |
| 926 | $(if $(PRIVATE_NO_DEFAULT_COMPILER_FLAGS),, \ |
Ying Wang | 1a08100 | 2010-07-13 14:55:47 -0700 | [diff] [blame] | 927 | $(PRIVATE_TARGET_GLOBAL_CFLAGS) \ |
| 928 | $(PRIVATE_TARGET_GLOBAL_CPPFLAGS) \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 929 | $(PRIVATE_ARM_CFLAGS) \ |
| 930 | ) \ |
Doug Kwan | 9a8ecf9 | 2011-05-10 21:50:58 -0700 | [diff] [blame] | 931 | $(PRIVATE_RTTI_FLAG) \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 932 | $(PRIVATE_CFLAGS) \ |
| 933 | $(PRIVATE_CPPFLAGS) \ |
| 934 | $(PRIVATE_DEBUG_CFLAGS) \ |
Atte Peltomaki | 60fe963 | 2011-12-21 09:24:09 -0800 | [diff] [blame] | 935 | -MD -MF $(patsubst %.o,%.d,$@) -o $@ $< |
Ying Wang | 3a7e4cc | 2011-01-28 14:14:47 -0800 | [diff] [blame] | 936 | $(transform-d-to-p) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 937 | endef |
| 938 | |
| 939 | |
| 940 | ########################################################### |
| 941 | ## Commands for running gcc to compile a C file |
| 942 | ########################################################### |
| 943 | |
| 944 | # $(1): extra flags |
| 945 | define transform-c-or-s-to-o-no-deps |
| 946 | @mkdir -p $(dir $@) |
| 947 | $(hide) $(PRIVATE_CC) \ |
Ying Wang | ddbcad8 | 2011-04-18 11:45:44 -0700 | [diff] [blame] | 948 | $(addprefix -I , $(PRIVATE_C_INCLUDES)) \ |
Andrew Boie | 85f3b21 | 2012-07-11 12:14:56 -0700 | [diff] [blame] | 949 | $(shell cat $(PRIVATE_IMPORT_INCLUDES)) \ |
Ying Wang | 4761e56 | 2011-04-12 11:06:35 -0700 | [diff] [blame] | 950 | $(addprefix -isystem ,\ |
| 951 | $(if $(PRIVATE_NO_DEFAULT_COMPILER_FLAGS),, \ |
| 952 | $(filter-out $(PRIVATE_C_INCLUDES), \ |
Ying Wang | ddbcad8 | 2011-04-18 11:45:44 -0700 | [diff] [blame] | 953 | $(PRIVATE_TARGET_PROJECT_INCLUDES) \ |
Ying Wang | 4761e56 | 2011-04-12 11:06:35 -0700 | [diff] [blame] | 954 | $(PRIVATE_TARGET_C_INCLUDES)))) \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 955 | -c \ |
| 956 | $(if $(PRIVATE_NO_DEFAULT_COMPILER_FLAGS),, \ |
Ying Wang | 1a08100 | 2010-07-13 14:55:47 -0700 | [diff] [blame] | 957 | $(PRIVATE_TARGET_GLOBAL_CFLAGS) \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 958 | $(PRIVATE_ARM_CFLAGS) \ |
| 959 | ) \ |
Ying Wang | 65d7852 | 2012-08-10 16:30:42 -0700 | [diff] [blame] | 960 | $(1) \ |
Atte Peltomaki | 60fe963 | 2011-12-21 09:24:09 -0800 | [diff] [blame] | 961 | -MD -MF $(patsubst %.o,%.d,$@) -o $@ $< |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 962 | endef |
| 963 | |
| 964 | define transform-c-to-o-no-deps |
| 965 | @echo "target $(PRIVATE_ARM_MODE) C: $(PRIVATE_MODULE) <= $<" |
Ying Wang | 7429e21 | 2012-08-15 10:59:10 -0700 | [diff] [blame] | 966 | $(call transform-c-or-s-to-o-no-deps, $(PRIVATE_CFLAGS) $(PRIVATE_CONLYFLAGS) $(PRIVATE_DEBUG_CFLAGS)) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 967 | endef |
| 968 | |
| 969 | define transform-s-to-o-no-deps |
| 970 | @echo "target asm: $(PRIVATE_MODULE) <= $<" |
| 971 | $(call transform-c-or-s-to-o-no-deps, $(PRIVATE_ASFLAGS)) |
| 972 | endef |
| 973 | |
| 974 | define transform-c-to-o |
| 975 | $(transform-c-to-o-no-deps) |
Ying Wang | 3a7e4cc | 2011-01-28 14:14:47 -0800 | [diff] [blame] | 976 | $(transform-d-to-p) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 977 | endef |
| 978 | |
| 979 | define transform-s-to-o |
| 980 | $(transform-s-to-o-no-deps) |
Ying Wang | 3a7e4cc | 2011-01-28 14:14:47 -0800 | [diff] [blame] | 981 | $(transform-d-to-p) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 982 | endef |
| 983 | |
| 984 | ########################################################### |
David 'Digit' Turner | 5dbb529 | 2009-05-14 16:00:09 +0200 | [diff] [blame] | 985 | ## Commands for running gcc to compile an Objective-C file |
| 986 | ## This should never happen for target builds but this |
| 987 | ## will error at build time. |
| 988 | ########################################################### |
| 989 | |
| 990 | define transform-m-to-o-no-deps |
| 991 | @echo "target ObjC: $(PRIVATE_MODULE) <= $<" |
Ying Wang | 65d7852 | 2012-08-10 16:30:42 -0700 | [diff] [blame] | 992 | $(call transform-c-or-s-to-o-no-deps, $(PRIVATE_CFLAGS) $(PRIVATE_DEBUG_CFLAGS)) |
David 'Digit' Turner | 5dbb529 | 2009-05-14 16:00:09 +0200 | [diff] [blame] | 993 | endef |
| 994 | |
| 995 | define transform-m-to-o |
| 996 | $(transform-m-to-o-no-deps) |
Ying Wang | 3a7e4cc | 2011-01-28 14:14:47 -0800 | [diff] [blame] | 997 | $(transform-d-to-p) |
David 'Digit' Turner | 5dbb529 | 2009-05-14 16:00:09 +0200 | [diff] [blame] | 998 | endef |
| 999 | |
| 1000 | ########################################################### |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1001 | ## Commands for running gcc to compile a host C++ file |
| 1002 | ########################################################### |
| 1003 | |
| 1004 | define transform-host-cpp-to-o |
| 1005 | @mkdir -p $(dir $@) |
| 1006 | @echo "host C++: $(PRIVATE_MODULE) <= $<" |
| 1007 | $(hide) $(PRIVATE_CXX) \ |
Ying Wang | ddbcad8 | 2011-04-18 11:45:44 -0700 | [diff] [blame] | 1008 | $(addprefix -I , $(PRIVATE_C_INCLUDES)) \ |
Andrew Boie | 85f3b21 | 2012-07-11 12:14:56 -0700 | [diff] [blame] | 1009 | $(shell cat $(PRIVATE_IMPORT_INCLUDES)) \ |
Ying Wang | ddbcad8 | 2011-04-18 11:45:44 -0700 | [diff] [blame] | 1010 | $(addprefix -isystem ,\ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1011 | $(if $(PRIVATE_NO_DEFAULT_COMPILER_FLAGS),, \ |
Ying Wang | ddbcad8 | 2011-04-18 11:45:44 -0700 | [diff] [blame] | 1012 | $(filter-out $(PRIVATE_C_INCLUDES), \ |
| 1013 | $(HOST_PROJECT_INCLUDES) \ |
| 1014 | $(HOST_C_INCLUDES)))) \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1015 | -c \ |
| 1016 | $(if $(PRIVATE_NO_DEFAULT_COMPILER_FLAGS),, \ |
| 1017 | $(HOST_GLOBAL_CFLAGS) \ |
| 1018 | $(HOST_GLOBAL_CPPFLAGS) \ |
| 1019 | ) \ |
| 1020 | $(PRIVATE_CFLAGS) \ |
| 1021 | $(PRIVATE_CPPFLAGS) \ |
| 1022 | $(PRIVATE_DEBUG_CFLAGS) \ |
Atte Peltomaki | 60fe963 | 2011-12-21 09:24:09 -0800 | [diff] [blame] | 1023 | -MD -MF $(patsubst %.o,%.d,$@) -o $@ $< |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1024 | $(transform-d-to-p) |
| 1025 | endef |
| 1026 | |
| 1027 | |
| 1028 | ########################################################### |
| 1029 | ## Commands for running gcc to compile a host C file |
| 1030 | ########################################################### |
| 1031 | |
| 1032 | # $(1): extra flags |
| 1033 | define transform-host-c-or-s-to-o-no-deps |
| 1034 | @mkdir -p $(dir $@) |
| 1035 | $(hide) $(PRIVATE_CC) \ |
Ying Wang | ddbcad8 | 2011-04-18 11:45:44 -0700 | [diff] [blame] | 1036 | $(addprefix -I , $(PRIVATE_C_INCLUDES)) \ |
Andrew Boie | 85f3b21 | 2012-07-11 12:14:56 -0700 | [diff] [blame] | 1037 | $(shell cat $(PRIVATE_IMPORT_INCLUDES)) \ |
Ying Wang | ddbcad8 | 2011-04-18 11:45:44 -0700 | [diff] [blame] | 1038 | $(addprefix -isystem ,\ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1039 | $(if $(PRIVATE_NO_DEFAULT_COMPILER_FLAGS),, \ |
Ying Wang | ddbcad8 | 2011-04-18 11:45:44 -0700 | [diff] [blame] | 1040 | $(filter-out $(PRIVATE_C_INCLUDES), \ |
| 1041 | $(HOST_PROJECT_INCLUDES) \ |
| 1042 | $(HOST_C_INCLUDES)))) \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1043 | -c \ |
| 1044 | $(if $(PRIVATE_NO_DEFAULT_COMPILER_FLAGS),, \ |
| 1045 | $(HOST_GLOBAL_CFLAGS) \ |
| 1046 | ) \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1047 | $(1) \ |
Atte Peltomaki | 60fe963 | 2011-12-21 09:24:09 -0800 | [diff] [blame] | 1048 | -MD -MF $(patsubst %.o,%.d,$@) -o $@ $< |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1049 | endef |
| 1050 | |
| 1051 | define transform-host-c-to-o-no-deps |
| 1052 | @echo "host C: $(PRIVATE_MODULE) <= $<" |
Ying Wang | 7429e21 | 2012-08-15 10:59:10 -0700 | [diff] [blame] | 1053 | $(call transform-host-c-or-s-to-o-no-deps, $(PRIVATE_CFLAGS) $(PRIVATE_CONLYFLAGS) $(PRIVATE_DEBUG_CFLAGS)) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1054 | endef |
| 1055 | |
| 1056 | define transform-host-s-to-o-no-deps |
| 1057 | @echo "host asm: $(PRIVATE_MODULE) <= $<" |
| 1058 | $(call transform-host-c-or-s-to-o-no-deps, $(PRIVATE_ASFLAGS)) |
| 1059 | endef |
| 1060 | |
| 1061 | define transform-host-c-to-o |
| 1062 | $(transform-host-c-to-o-no-deps) |
| 1063 | $(transform-d-to-p) |
| 1064 | endef |
| 1065 | |
| 1066 | define transform-host-s-to-o |
| 1067 | $(transform-host-s-to-o-no-deps) |
| 1068 | $(transform-d-to-p) |
| 1069 | endef |
| 1070 | |
| 1071 | ########################################################### |
David 'Digit' Turner | 5dbb529 | 2009-05-14 16:00:09 +0200 | [diff] [blame] | 1072 | ## Commands for running gcc to compile a host Objective-C file |
| 1073 | ########################################################### |
| 1074 | |
| 1075 | define transform-host-m-to-o-no-deps |
| 1076 | @echo "host ObjC: $(PRIVATE_MODULE) <= $<" |
Ying Wang | 65d7852 | 2012-08-10 16:30:42 -0700 | [diff] [blame] | 1077 | $(call transform-host-c-or-s-to-o-no-deps, $(PRIVATE_CFLAGS) $(PRIVATE_DEBUG_CFLAGS)) |
David 'Digit' Turner | 5dbb529 | 2009-05-14 16:00:09 +0200 | [diff] [blame] | 1078 | endef |
| 1079 | |
David 'Digit' Turner | 5ca286d | 2011-02-11 16:19:31 +0100 | [diff] [blame] | 1080 | define transform-host-m-to-o |
David 'Digit' Turner | 5dbb529 | 2009-05-14 16:00:09 +0200 | [diff] [blame] | 1081 | $(transform-host-m-to-o-no-deps) |
| 1082 | $(transform-d-to-p) |
| 1083 | endef |
| 1084 | |
| 1085 | ########################################################### |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1086 | ## Commands for running ar |
| 1087 | ########################################################### |
| 1088 | |
Ying Wang | e4b24eb | 2010-05-27 11:55:39 -0700 | [diff] [blame] | 1089 | define _concat-if-arg2-not-empty |
| 1090 | $(if $(2),$(hide) $(1) $(2)) |
| 1091 | endef |
| 1092 | |
| 1093 | # Split long argument list into smaller groups and call the command repeatedly |
Torne (Richard Coles) | bffaef2 | 2012-06-15 16:03:52 +0100 | [diff] [blame] | 1094 | # Call the command at least once even if there are no arguments, as otherwise |
| 1095 | # the output file won't be created. |
Ying Wang | e4b24eb | 2010-05-27 11:55:39 -0700 | [diff] [blame] | 1096 | # |
| 1097 | # $(1): the command without arguments |
| 1098 | # $(2): the arguments |
| 1099 | define split-long-arguments |
Torne (Richard Coles) | bffaef2 | 2012-06-15 16:03:52 +0100 | [diff] [blame] | 1100 | $(hide) $(1) $(wordlist 1,500,$(2)) |
Ying Wang | e4b24eb | 2010-05-27 11:55:39 -0700 | [diff] [blame] | 1101 | $(call _concat-if-arg2-not-empty,$(1),$(wordlist 501,1000,$(2))) |
| 1102 | $(call _concat-if-arg2-not-empty,$(1),$(wordlist 1001,1500,$(2))) |
| 1103 | $(call _concat-if-arg2-not-empty,$(1),$(wordlist 1501,2000,$(2))) |
| 1104 | $(call _concat-if-arg2-not-empty,$(1),$(wordlist 2001,2500,$(2))) |
| 1105 | $(call _concat-if-arg2-not-empty,$(1),$(wordlist 2501,3000,$(2))) |
| 1106 | $(call _concat-if-arg2-not-empty,$(1),$(wordlist 3001,99999,$(2))) |
| 1107 | endef |
| 1108 | |
Ying Wang | a02d3d9 | 2011-01-27 18:48:00 -0800 | [diff] [blame] | 1109 | # $(1): the full path of the source static library. |
| 1110 | define _extract-and-include-single-target-whole-static-lib |
| 1111 | @echo "preparing StaticLib: $(PRIVATE_MODULE) [including $(1)]" |
| 1112 | $(hide) ldir=$(PRIVATE_INTERMEDIATES_DIR)/WHOLE/$(basename $(notdir $(1)))_objs;\ |
| 1113 | rm -rf $$ldir; \ |
| 1114 | mkdir -p $$ldir; \ |
| 1115 | filelist=; \ |
| 1116 | for f in `$(TARGET_AR) t $(1)`; do \ |
| 1117 | $(TARGET_AR) p $(1) $$f > $$ldir/$$f; \ |
| 1118 | filelist="$$filelist $$ldir/$$f"; \ |
| 1119 | done ; \ |
| 1120 | $(TARGET_AR) $(TARGET_GLOBAL_ARFLAGS) $(PRIVATE_ARFLAGS) $@ $$filelist |
| 1121 | |
| 1122 | endef |
| 1123 | |
Dan Bornstein | 3d02eac | 2009-10-21 11:12:56 -0700 | [diff] [blame] | 1124 | define extract-and-include-target-whole-static-libs |
Dima Zavin | 46e9bec | 2009-05-27 19:41:07 -0700 | [diff] [blame] | 1125 | $(foreach lib,$(PRIVATE_ALL_WHOLE_STATIC_LIBRARIES), \ |
Ying Wang | a02d3d9 | 2011-01-27 18:48:00 -0800 | [diff] [blame] | 1126 | $(call _extract-and-include-single-target-whole-static-lib, $(lib))) |
Dima Zavin | 46e9bec | 2009-05-27 19:41:07 -0700 | [diff] [blame] | 1127 | endef |
| 1128 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1129 | # Explicitly delete the archive first so that ar doesn't |
| 1130 | # try to add to an existing archive. |
| 1131 | define transform-o-to-static-lib |
| 1132 | @mkdir -p $(dir $@) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1133 | @rm -f $@ |
Dan Bornstein | 3d02eac | 2009-10-21 11:12:56 -0700 | [diff] [blame] | 1134 | $(extract-and-include-target-whole-static-libs) |
Dima Zavin | 46e9bec | 2009-05-27 19:41:07 -0700 | [diff] [blame] | 1135 | @echo "target StaticLib: $(PRIVATE_MODULE) ($@)" |
Ying Wang | e4b24eb | 2010-05-27 11:55:39 -0700 | [diff] [blame] | 1136 | $(call split-long-arguments,$(TARGET_AR) $(TARGET_GLOBAL_ARFLAGS) $(PRIVATE_ARFLAGS) $@,$(filter %.o, $^)) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1137 | endef |
| 1138 | |
| 1139 | ########################################################### |
| 1140 | ## Commands for running host ar |
| 1141 | ########################################################### |
| 1142 | |
Ying Wang | a02d3d9 | 2011-01-27 18:48:00 -0800 | [diff] [blame] | 1143 | # $(1): the full path of the source static library. |
| 1144 | define _extract-and-include-single-host-whole-static-lib |
| 1145 | @echo "preparing StaticLib: $(PRIVATE_MODULE) [including $(1)]" |
| 1146 | $(hide) ldir=$(PRIVATE_INTERMEDIATES_DIR)/WHOLE/$(basename $(notdir $(1)))_objs;\ |
| 1147 | rm -rf $$ldir; \ |
| 1148 | mkdir -p $$ldir; \ |
| 1149 | filelist=; \ |
Jeff Hamilton | 293f939 | 2011-11-18 17:15:25 -0600 | [diff] [blame] | 1150 | for f in `$(HOST_AR) t $(1) | \grep '\.o$$'`; do \ |
Ying Wang | a02d3d9 | 2011-01-27 18:48:00 -0800 | [diff] [blame] | 1151 | $(HOST_AR) p $(1) $$f > $$ldir/$$f; \ |
| 1152 | filelist="$$filelist $$ldir/$$f"; \ |
| 1153 | done ; \ |
| 1154 | $(HOST_AR) $(HOST_GLOBAL_ARFLAGS) $(PRIVATE_ARFLAGS) $@ $$filelist |
| 1155 | |
| 1156 | endef |
| 1157 | |
Dan Bornstein | 3d02eac | 2009-10-21 11:12:56 -0700 | [diff] [blame] | 1158 | define extract-and-include-host-whole-static-libs |
| 1159 | $(foreach lib,$(PRIVATE_ALL_WHOLE_STATIC_LIBRARIES), \ |
Ying Wang | a02d3d9 | 2011-01-27 18:48:00 -0800 | [diff] [blame] | 1160 | $(call _extract-and-include-single-host-whole-static-lib, $(lib))) |
Dan Bornstein | 3d02eac | 2009-10-21 11:12:56 -0700 | [diff] [blame] | 1161 | endef |
| 1162 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1163 | # Explicitly delete the archive first so that ar doesn't |
| 1164 | # try to add to an existing archive. |
| 1165 | define transform-host-o-to-static-lib |
| 1166 | @mkdir -p $(dir $@) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1167 | @rm -f $@ |
Dan Bornstein | 3d02eac | 2009-10-21 11:12:56 -0700 | [diff] [blame] | 1168 | $(extract-and-include-host-whole-static-libs) |
Dan Bornstein | 6bffc91 | 2009-10-15 13:01:36 -0700 | [diff] [blame] | 1169 | @echo "host StaticLib: $(PRIVATE_MODULE) ($@)" |
Ying Wang | e4b24eb | 2010-05-27 11:55:39 -0700 | [diff] [blame] | 1170 | $(call split-long-arguments,$(HOST_AR) $(HOST_GLOBAL_ARFLAGS) $(PRIVATE_ARFLAGS) $@,$(filter %.o, $^)) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1171 | endef |
| 1172 | |
| 1173 | |
| 1174 | ########################################################### |
| 1175 | ## Commands for running gcc to link a shared library or package |
| 1176 | ########################################################### |
| 1177 | |
| 1178 | # ld just seems to be so finicky with command order that we allow |
| 1179 | # it to be overriden en-masse see combo/linux-arm.make for an example. |
| 1180 | ifneq ($(HOST_CUSTOM_LD_COMMAND),true) |
| 1181 | define transform-host-o-to-shared-lib-inner |
Ying Wang | 3a7e4cc | 2011-01-28 14:14:47 -0800 | [diff] [blame] | 1182 | $(hide) $(PRIVATE_CXX) \ |
Ying Wang | 80e6cce | 2011-01-24 23:25:36 -0800 | [diff] [blame] | 1183 | -Wl,-rpath-link=$(HOST_OUT_INTERMEDIATE_LIBRARIES) \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1184 | -Wl,-rpath,\$$ORIGIN/../lib \ |
| 1185 | -shared -Wl,-soname,$(notdir $@) \ |
| 1186 | $(PRIVATE_LDFLAGS) \ |
| 1187 | $(HOST_GLOBAL_LD_DIRS) \ |
| 1188 | $(if $(PRIVATE_NO_DEFAULT_COMPILER_FLAGS),, \ |
| 1189 | $(HOST_GLOBAL_LDFLAGS) \ |
| 1190 | ) \ |
| 1191 | $(PRIVATE_ALL_OBJECTS) \ |
| 1192 | -Wl,--whole-archive \ |
| 1193 | $(call normalize-host-libraries,$(PRIVATE_ALL_WHOLE_STATIC_LIBRARIES)) \ |
| 1194 | -Wl,--no-whole-archive \ |
Ying Wang | fcdabd4 | 2011-04-25 14:22:41 -0700 | [diff] [blame] | 1195 | $(if $(PRIVATE_GROUP_STATIC_LIBRARIES),-Wl$(comma)--start-group) \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1196 | $(call normalize-host-libraries,$(PRIVATE_ALL_STATIC_LIBRARIES)) \ |
Ying Wang | fcdabd4 | 2011-04-25 14:22:41 -0700 | [diff] [blame] | 1197 | $(if $(PRIVATE_GROUP_STATIC_LIBRARIES),-Wl$(comma)--end-group) \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1198 | $(call normalize-host-libraries,$(PRIVATE_ALL_SHARED_LIBRARIES)) \ |
| 1199 | -o $@ \ |
| 1200 | $(PRIVATE_LDLIBS) |
| 1201 | endef |
| 1202 | endif |
| 1203 | |
| 1204 | define transform-host-o-to-shared-lib |
| 1205 | @mkdir -p $(dir $@) |
| 1206 | @echo "host SharedLib: $(PRIVATE_MODULE) ($@)" |
Ying Wang | 3a7e4cc | 2011-01-28 14:14:47 -0800 | [diff] [blame] | 1207 | $(transform-host-o-to-shared-lib-inner) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1208 | endef |
| 1209 | |
| 1210 | define transform-host-o-to-package |
| 1211 | @mkdir -p $(dir $@) |
| 1212 | @echo "host Package: $(PRIVATE_MODULE) ($@)" |
Ying Wang | 3a7e4cc | 2011-01-28 14:14:47 -0800 | [diff] [blame] | 1213 | $(transform-host-o-to-shared-lib-inner) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1214 | endef |
| 1215 | |
| 1216 | |
| 1217 | ########################################################### |
| 1218 | ## Commands for running gcc to link a shared library or package |
| 1219 | ########################################################### |
| 1220 | |
| 1221 | #echo >$@.vers "{"; \ |
| 1222 | #echo >>$@.vers " global:"; \ |
| 1223 | #$(BUILD_SYSTEM)/filter_symbols.sh $(TARGET_NM) " " ";" $(filter %.o,$^) | sort -u >>$@.vers; \ |
| 1224 | #echo >>$@.vers " local:"; \ |
| 1225 | #echo >>$@.vers " *;"; \ |
| 1226 | #echo >>$@.vers "};"; \ |
| 1227 | |
| 1228 | # -Wl,--version-script=$@.vers \ |
| 1229 | |
| 1230 | # ld just seems to be so finicky with command order that we allow |
| 1231 | # it to be overriden en-masse see combo/linux-arm.make for an example. |
| 1232 | ifneq ($(TARGET_CUSTOM_LD_COMMAND),true) |
| 1233 | define transform-o-to-shared-lib-inner |
Ying Wang | 3a7e4cc | 2011-01-28 14:14:47 -0800 | [diff] [blame] | 1234 | $(hide) $(PRIVATE_CXX) \ |
Ying Wang | 1a08100 | 2010-07-13 14:55:47 -0700 | [diff] [blame] | 1235 | $(PRIVATE_TARGET_GLOBAL_LDFLAGS) \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1236 | -Wl,-rpath-link=$(TARGET_OUT_INTERMEDIATE_LIBRARIES) \ |
| 1237 | -Wl,-rpath,\$$ORIGIN/../lib \ |
| 1238 | -shared -Wl,-soname,$(notdir $@) \ |
| 1239 | $(PRIVATE_LDFLAGS) \ |
Ying Wang | 1a08100 | 2010-07-13 14:55:47 -0700 | [diff] [blame] | 1240 | $(PRIVATE_TARGET_GLOBAL_LD_DIRS) \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1241 | $(PRIVATE_ALL_OBJECTS) \ |
| 1242 | -Wl,--whole-archive \ |
Ying Wang | 80e6cce | 2011-01-24 23:25:36 -0800 | [diff] [blame] | 1243 | $(call normalize-target-libraries,$(PRIVATE_ALL_WHOLE_STATIC_LIBRARIES)) \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1244 | -Wl,--no-whole-archive \ |
Ying Wang | fcdabd4 | 2011-04-25 14:22:41 -0700 | [diff] [blame] | 1245 | $(if $(PRIVATE_GROUP_STATIC_LIBRARIES),-Wl$(comma)--start-group) \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1246 | $(call normalize-target-libraries,$(PRIVATE_ALL_STATIC_LIBRARIES)) \ |
Ying Wang | fcdabd4 | 2011-04-25 14:22:41 -0700 | [diff] [blame] | 1247 | $(if $(PRIVATE_GROUP_STATIC_LIBRARIES),-Wl$(comma)--end-group) \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1248 | $(call normalize-target-libraries,$(PRIVATE_ALL_SHARED_LIBRARIES)) \ |
| 1249 | -o $@ \ |
| 1250 | $(PRIVATE_LDLIBS) |
| 1251 | endef |
| 1252 | endif |
| 1253 | |
| 1254 | define transform-o-to-shared-lib |
| 1255 | @mkdir -p $(dir $@) |
| 1256 | @echo "target SharedLib: $(PRIVATE_MODULE) ($@)" |
Ying Wang | 3a7e4cc | 2011-01-28 14:14:47 -0800 | [diff] [blame] | 1257 | $(transform-o-to-shared-lib-inner) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1258 | endef |
| 1259 | |
| 1260 | define transform-o-to-package |
| 1261 | @mkdir -p $(dir $@) |
| 1262 | @echo "target Package: $(PRIVATE_MODULE) ($@)" |
Ying Wang | 3a7e4cc | 2011-01-28 14:14:47 -0800 | [diff] [blame] | 1263 | $(transform-o-to-shared-lib-inner) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1264 | endef |
| 1265 | |
| 1266 | |
| 1267 | ########################################################### |
| 1268 | ## Commands for filtering a target executable or library |
| 1269 | ########################################################### |
| 1270 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1271 | define transform-to-stripped |
| 1272 | @mkdir -p $(dir $@) |
| 1273 | @echo "target Strip: $(PRIVATE_MODULE) ($@)" |
Bruce Beare | 45ac434 | 2010-06-24 14:02:00 -0700 | [diff] [blame] | 1274 | $(hide) $(TARGET_STRIP_COMMAND) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1275 | endef |
| 1276 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1277 | |
| 1278 | ########################################################### |
| 1279 | ## Commands for running gcc to link an executable |
| 1280 | ########################################################### |
| 1281 | |
| 1282 | ifneq ($(TARGET_CUSTOM_LD_COMMAND),true) |
| 1283 | define transform-o-to-executable-inner |
Ying Wang | 3a7e4cc | 2011-01-28 14:14:47 -0800 | [diff] [blame] | 1284 | $(hide) $(PRIVATE_CXX) \ |
Ying Wang | c6ffc00 | 2012-09-25 17:52:10 -0700 | [diff] [blame] | 1285 | $(PRIVATE_TARGET_GLOBAL_LDFLAGS) \ |
| 1286 | $(PRIVATE_TARGET_GLOBAL_LD_DIRS) \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1287 | -Wl,-rpath-link=$(TARGET_OUT_INTERMEDIATE_LIBRARIES) \ |
| 1288 | -Wl,-rpath,\$$ORIGIN/../lib \ |
| 1289 | $(PRIVATE_LDFLAGS) \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1290 | $(PRIVATE_ALL_OBJECTS) \ |
| 1291 | -Wl,--whole-archive \ |
| 1292 | $(call normalize-target-libraries,$(PRIVATE_ALL_WHOLE_STATIC_LIBRARIES)) \ |
| 1293 | -Wl,--no-whole-archive \ |
Ying Wang | fcdabd4 | 2011-04-25 14:22:41 -0700 | [diff] [blame] | 1294 | $(if $(PRIVATE_GROUP_STATIC_LIBRARIES),-Wl$(comma)--start-group) \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1295 | $(call normalize-target-libraries,$(PRIVATE_ALL_STATIC_LIBRARIES)) \ |
Ying Wang | fcdabd4 | 2011-04-25 14:22:41 -0700 | [diff] [blame] | 1296 | $(if $(PRIVATE_GROUP_STATIC_LIBRARIES),-Wl$(comma)--end-group) \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1297 | $(call normalize-target-libraries,$(PRIVATE_ALL_SHARED_LIBRARIES)) \ |
| 1298 | -o $@ \ |
| 1299 | $(PRIVATE_LDLIBS) |
| 1300 | endef |
| 1301 | endif |
| 1302 | |
| 1303 | define transform-o-to-executable |
| 1304 | @mkdir -p $(dir $@) |
| 1305 | @echo "target Executable: $(PRIVATE_MODULE) ($@)" |
Ying Wang | 3a7e4cc | 2011-01-28 14:14:47 -0800 | [diff] [blame] | 1306 | $(transform-o-to-executable-inner) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1307 | endef |
| 1308 | |
| 1309 | |
| 1310 | ########################################################### |
| 1311 | ## Commands for running gcc to link a statically linked |
| 1312 | ## executable. In practice, we only use this on arm, so |
| 1313 | ## the other platforms don't have the |
| 1314 | ## transform-o-to-static-executable defined |
| 1315 | ########################################################### |
| 1316 | |
| 1317 | ifneq ($(TARGET_CUSTOM_LD_COMMAND),true) |
| 1318 | define transform-o-to-static-executable-inner |
| 1319 | endef |
| 1320 | endif |
| 1321 | |
| 1322 | define transform-o-to-static-executable |
| 1323 | @mkdir -p $(dir $@) |
| 1324 | @echo "target StaticExecutable: $(PRIVATE_MODULE) ($@)" |
Ying Wang | 3a7e4cc | 2011-01-28 14:14:47 -0800 | [diff] [blame] | 1325 | $(transform-o-to-static-executable-inner) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1326 | endef |
| 1327 | |
| 1328 | |
| 1329 | ########################################################### |
| 1330 | ## Commands for running gcc to link a host executable |
| 1331 | ########################################################### |
| 1332 | |
| 1333 | ifneq ($(HOST_CUSTOM_LD_COMMAND),true) |
| 1334 | define transform-host-o-to-executable-inner |
Ying Wang | 3a7e4cc | 2011-01-28 14:14:47 -0800 | [diff] [blame] | 1335 | $(hide) $(PRIVATE_CXX) \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1336 | $(PRIVATE_ALL_OBJECTS) \ |
| 1337 | -Wl,--whole-archive \ |
| 1338 | $(call normalize-host-libraries,$(PRIVATE_ALL_WHOLE_STATIC_LIBRARIES)) \ |
| 1339 | -Wl,--no-whole-archive \ |
Ying Wang | fcdabd4 | 2011-04-25 14:22:41 -0700 | [diff] [blame] | 1340 | $(if $(PRIVATE_GROUP_STATIC_LIBRARIES),-Wl$(comma)--start-group) \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1341 | $(call normalize-host-libraries,$(PRIVATE_ALL_STATIC_LIBRARIES)) \ |
Ying Wang | fcdabd4 | 2011-04-25 14:22:41 -0700 | [diff] [blame] | 1342 | $(if $(PRIVATE_GROUP_STATIC_LIBRARIES),-Wl$(comma)--end-group) \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1343 | $(call normalize-host-libraries,$(PRIVATE_ALL_SHARED_LIBRARIES)) \ |
Conley Owens | d9e7d25 | 2011-11-10 09:57:40 -0800 | [diff] [blame] | 1344 | -Wl,-rpath-link=$(HOST_OUT_INTERMEDIATE_LIBRARIES) \ |
| 1345 | -Wl,-rpath,\$$ORIGIN/../lib \ |
| 1346 | $(HOST_GLOBAL_LD_DIRS) \ |
| 1347 | $(PRIVATE_LDFLAGS) \ |
| 1348 | $(if $(PRIVATE_NO_DEFAULT_COMPILER_FLAGS),, \ |
| 1349 | $(HOST_GLOBAL_LDFLAGS) \ |
| 1350 | ) \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1351 | -o $@ \ |
| 1352 | $(PRIVATE_LDLIBS) |
| 1353 | endef |
| 1354 | endif |
| 1355 | |
| 1356 | define transform-host-o-to-executable |
| 1357 | @mkdir -p $(dir $@) |
| 1358 | @echo "host Executable: $(PRIVATE_MODULE) ($@)" |
Ying Wang | 3a7e4cc | 2011-01-28 14:14:47 -0800 | [diff] [blame] | 1359 | $(transform-host-o-to-executable-inner) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1360 | endef |
| 1361 | |
| 1362 | |
| 1363 | ########################################################### |
| 1364 | ## Commands for running javac to make .class files |
| 1365 | ########################################################### |
| 1366 | |
| 1367 | #@echo "Source intermediates dir: $(PRIVATE_SOURCE_INTERMEDIATES_DIR)" |
| 1368 | #@echo "Source intermediates: $$(find $(PRIVATE_SOURCE_INTERMEDIATES_DIR) -name '*.java')" |
| 1369 | |
| 1370 | # TODO: Right now we generate the asset resources twice, first as part |
| 1371 | # of generating the Java classes, then at the end when packaging the final |
| 1372 | # assets. This should be changed to do one of two things: (1) Don't generate |
| 1373 | # any resource files the first time, only create classes during that stage; |
| 1374 | # or (2) Don't use the -c flag with the second stage, instead taking the |
| 1375 | # resource files from the first stage as additional input. My original intent |
| 1376 | # was to use approach (2), but this requires a little more work in the tool. |
| 1377 | # Maybe we should just use approach (1). |
| 1378 | |
| 1379 | # This rule creates the R.java and Manifest.java files, both of which |
Ying Wang | 4f1ab92 | 2011-03-15 13:19:30 -0700 | [diff] [blame] | 1380 | # are PRODUCT-neutral. Don't pass PRIVATE_PRODUCT_AAPT_CONFIG to this invocation. |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1381 | define create-resource-java-files |
| 1382 | @mkdir -p $(PRIVATE_SOURCE_INTERMEDIATES_DIR) |
| 1383 | @mkdir -p $(dir $(PRIVATE_RESOURCE_PUBLICS_OUTPUT)) |
Ying Wang | c61d593 | 2010-03-10 16:02:42 -0800 | [diff] [blame] | 1384 | $(hide) $(AAPT) package $(PRIVATE_AAPT_FLAGS) -m \ |
Ying Wang | 4f1ab92 | 2011-03-15 13:19:30 -0700 | [diff] [blame] | 1385 | $(eval # PRIVATE_PRODUCT_AAPT_CONFIG is intentionally missing-- see comment.) \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1386 | $(addprefix -J , $(PRIVATE_SOURCE_INTERMEDIATES_DIR)) \ |
| 1387 | $(addprefix -M , $(PRIVATE_ANDROID_MANIFEST)) \ |
| 1388 | $(addprefix -P , $(PRIVATE_RESOURCE_PUBLICS_OUTPUT)) \ |
| 1389 | $(addprefix -S , $(PRIVATE_RESOURCE_DIR)) \ |
| 1390 | $(addprefix -A , $(PRIVATE_ASSET_DIR)) \ |
Dianne Hackborn | 9bd5404 | 2009-05-15 18:01:20 -0700 | [diff] [blame] | 1391 | $(addprefix -I , $(PRIVATE_AAPT_INCLUDES)) \ |
Joe Onorato | 2daa2b3 | 2009-08-30 13:39:24 -0700 | [diff] [blame] | 1392 | $(addprefix -G , $(PRIVATE_PROGUARD_OPTIONS_FILE)) \ |
Ying Wang | bb9c230 | 2011-04-08 17:27:35 -0700 | [diff] [blame] | 1393 | $(addprefix --min-sdk-version , $(PRIVATE_DEFAULT_APP_TARGET_SDK)) \ |
| 1394 | $(addprefix --target-sdk-version , $(PRIVATE_DEFAULT_APP_TARGET_SDK)) \ |
Ying Wang | 1ae607a | 2010-06-23 13:34:22 -0700 | [diff] [blame] | 1395 | $(if $(filter --version-code,$(PRIVATE_AAPT_FLAGS)),,$(addprefix --version-code , $(PLATFORM_SDK_VERSION))) \ |
Ying Wang | 8f5069b | 2010-06-29 11:08:13 -0700 | [diff] [blame] | 1396 | $(if $(filter --version-name,$(PRIVATE_AAPT_FLAGS)),,$(addprefix --version-name , $(PLATFORM_VERSION)-$(BUILD_NUMBER))) \ |
Ying Wang | 8c25482 | 2010-03-16 16:13:56 -0700 | [diff] [blame] | 1397 | $(addprefix --rename-manifest-package , $(PRIVATE_MANIFEST_PACKAGE_NAME)) \ |
Ying Wang | 3dae0ee | 2010-09-02 15:41:01 -0700 | [diff] [blame] | 1398 | $(addprefix --rename-instrumentation-target-package , $(PRIVATE_MANIFEST_INSTRUMENTATION_FOR)) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1399 | endef |
| 1400 | |
| 1401 | ifeq ($(HOST_OS),windows) |
| 1402 | xlint_unchecked := |
| 1403 | else |
Jeffrey Chyan | 7adbf97 | 2010-07-07 13:42:19 -0500 | [diff] [blame] | 1404 | xlint_unchecked := -Xlint:unchecked |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1405 | endif |
| 1406 | |
Brian Carlstrom | bb7c6d8 | 2011-04-01 15:45:58 -0700 | [diff] [blame] | 1407 | ifeq (true, $(ENABLE_INCREMENTALJAVAC)) |
| 1408 | incremental_dex := --incremental |
| 1409 | else |
| 1410 | incremental_dex := |
| 1411 | endif |
| 1412 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1413 | # emit-line, <word list>, <output file> |
| 1414 | define emit-line |
| 1415 | $(if $(1),echo -n '$(strip $(1)) ' >> $(2)) |
| 1416 | endef |
| 1417 | |
| 1418 | # dump-words-to-file, <word list>, <output file> |
| 1419 | define dump-words-to-file |
| 1420 | @rm -f $(2) |
| 1421 | @$(call emit-line,$(wordlist 1,200,$(1)),$(2)) |
| 1422 | @$(call emit-line,$(wordlist 201,400,$(1)),$(2)) |
| 1423 | @$(call emit-line,$(wordlist 401,600,$(1)),$(2)) |
| 1424 | @$(call emit-line,$(wordlist 601,800,$(1)),$(2)) |
| 1425 | @$(call emit-line,$(wordlist 801,1000,$(1)),$(2)) |
| 1426 | @$(call emit-line,$(wordlist 1001,1200,$(1)),$(2)) |
| 1427 | @$(call emit-line,$(wordlist 1201,1400,$(1)),$(2)) |
| 1428 | @$(call emit-line,$(wordlist 1401,1600,$(1)),$(2)) |
| 1429 | @$(call emit-line,$(wordlist 1601,1800,$(1)),$(2)) |
| 1430 | @$(call emit-line,$(wordlist 1801,2000,$(1)),$(2)) |
| 1431 | @$(call emit-line,$(wordlist 2001,2200,$(1)),$(2)) |
| 1432 | @$(call emit-line,$(wordlist 2201,2400,$(1)),$(2)) |
| 1433 | @$(call emit-line,$(wordlist 2401,2600,$(1)),$(2)) |
| 1434 | @$(call emit-line,$(wordlist 2601,2800,$(1)),$(2)) |
| 1435 | @$(call emit-line,$(wordlist 2801,3000,$(1)),$(2)) |
| 1436 | @$(call emit-line,$(wordlist 3001,3200,$(1)),$(2)) |
| 1437 | @$(call emit-line,$(wordlist 3201,3400,$(1)),$(2)) |
| 1438 | @$(call emit-line,$(wordlist 3401,3600,$(1)),$(2)) |
| 1439 | @$(call emit-line,$(wordlist 3601,3800,$(1)),$(2)) |
| 1440 | @$(call emit-line,$(wordlist 3801,4000,$(1)),$(2)) |
Jesse Wilson | 72c941a | 2010-05-04 16:33:49 -0700 | [diff] [blame] | 1441 | @$(call emit-line,$(wordlist 4001,4200,$(1)),$(2)) |
| 1442 | @$(call emit-line,$(wordlist 4201,4400,$(1)),$(2)) |
| 1443 | @$(call emit-line,$(wordlist 4401,4600,$(1)),$(2)) |
| 1444 | @$(call emit-line,$(wordlist 4601,4800,$(1)),$(2)) |
| 1445 | @$(call emit-line,$(wordlist 4801,5000,$(1)),$(2)) |
| 1446 | @$(if $(wordlist 5001,5002,$(1)),$(error Too many words ($(words $(1))))) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1447 | endef |
| 1448 | |
| 1449 | # For a list of jar files, unzip them to a specified directory, |
| 1450 | # but make sure that no META-INF files come along for the ride. |
| 1451 | # |
| 1452 | # $(1): files to unzip |
| 1453 | # $(2): destination directory |
| 1454 | define unzip-jar-files |
| 1455 | $(hide) for f in $(1); \ |
| 1456 | do \ |
| 1457 | if [ ! -f $$f ]; then \ |
| 1458 | echo Missing file $$f; \ |
| 1459 | exit 1; \ |
| 1460 | fi; \ |
Sriram Raman | f1a55f8 | 2009-06-09 15:08:29 -0700 | [diff] [blame] | 1461 | unzip -qo $$f -d $(2); \ |
Ying Wang | 3a6f758 | 2012-08-30 12:59:42 -0700 | [diff] [blame] | 1462 | done \ |
| 1463 | $(if $(PRIVATE_DONT_DELETE_JAR_META_INF),,;rm -rf $(2)/META-INF) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1464 | endef |
| 1465 | |
Brian Carlstrom | 7826951 | 2010-12-10 12:10:24 -0800 | [diff] [blame] | 1466 | # Common definition to invoke javac on the host and target. |
| 1467 | # |
| 1468 | # Some historical notes: |
| 1469 | # - below we write the list of java files to java-source-list to avoid argument |
| 1470 | # list length problems with Cygwin |
| 1471 | # - we filter out duplicate java file names because eclipse's compiler |
| 1472 | # doesn't like them. |
| 1473 | # |
| 1474 | # $(1): javac |
| 1475 | # $(2): bootclasspath |
| 1476 | define compile-java |
Joe Onorato | 64d85d0 | 2009-04-09 19:31:12 -0700 | [diff] [blame] | 1477 | $(hide) rm -f $@ |
| 1478 | $(hide) rm -rf $(PRIVATE_CLASS_INTERMEDIATES_DIR) |
Brian Carlstrom | 7826951 | 2010-12-10 12:10:24 -0800 | [diff] [blame] | 1479 | $(hide) mkdir -p $(dir $@) |
Joe Onorato | 64d85d0 | 2009-04-09 19:31:12 -0700 | [diff] [blame] | 1480 | $(hide) mkdir -p $(PRIVATE_CLASS_INTERMEDIATES_DIR) |
Brian Carlstrom | 7826951 | 2010-12-10 12:10:24 -0800 | [diff] [blame] | 1481 | $(call unzip-jar-files,$(PRIVATE_STATIC_JAVA_LIBRARIES),$(PRIVATE_CLASS_INTERMEDIATES_DIR)) |
Ying Wang | 015edd2 | 2011-01-20 15:01:56 -0800 | [diff] [blame] | 1482 | $(call dump-words-to-file,$(PRIVATE_JAVA_SOURCES),$(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list) |
Joe Onorato | 64d85d0 | 2009-04-09 19:31:12 -0700 | [diff] [blame] | 1483 | $(hide) if [ -d "$(PRIVATE_SOURCE_INTERMEDIATES_DIR)" ]; then \ |
Ying Wang | 015edd2 | 2011-01-20 15:01:56 -0800 | [diff] [blame] | 1484 | find $(PRIVATE_SOURCE_INTERMEDIATES_DIR) -name '*.java' >> $(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list; \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1485 | fi |
Ying Wang | 015edd2 | 2011-01-20 15:01:56 -0800 | [diff] [blame] | 1486 | $(hide) tr ' ' '\n' < $(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list \ |
| 1487 | | sort -u > $(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list-uniq |
Ying Wang | e109a1d | 2011-12-12 17:52:03 -0800 | [diff] [blame] | 1488 | $(hide) if [ -s $(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list-uniq ] ; then \ |
| 1489 | $(1) -encoding UTF-8 \ |
Brian Carlstrom | 7826951 | 2010-12-10 12:10:24 -0800 | [diff] [blame] | 1490 | $(strip $(PRIVATE_JAVAC_DEBUG_FLAGS)) \ |
Ying Wang | 057eba0 | 2012-10-18 10:54:49 -0700 | [diff] [blame] | 1491 | $(if $(findstring true,$(PRIVATE_WARNINGS_ENABLE)),$(xlint_unchecked),) \ |
Brian Carlstrom | 7826951 | 2010-12-10 12:10:24 -0800 | [diff] [blame] | 1492 | $(2) \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1493 | $(addprefix -classpath ,$(strip \ |
| 1494 | $(call normalize-path-list,$(PRIVATE_ALL_JAVA_LIBRARIES)))) \ |
Ying Wang | 057eba0 | 2012-10-18 10:54:49 -0700 | [diff] [blame] | 1495 | $(if $(findstring true,$(PRIVATE_WARNINGS_ENABLE)),$(xlint_unchecked),) \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1496 | -extdirs "" -d $(PRIVATE_CLASS_INTERMEDIATES_DIR) \ |
Brian Carlstrom | 7826951 | 2010-12-10 12:10:24 -0800 | [diff] [blame] | 1497 | $(PRIVATE_JAVACFLAGS) \ |
Ying Wang | 015edd2 | 2011-01-20 15:01:56 -0800 | [diff] [blame] | 1498 | \@$(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list-uniq \ |
Ying Wang | e109a1d | 2011-12-12 17:52:03 -0800 | [diff] [blame] | 1499 | || ( rm -rf $(PRIVATE_CLASS_INTERMEDIATES_DIR) ; exit 41 ) \ |
| 1500 | fi |
Joe Onorato | 0eccce9 | 2011-10-30 21:37:35 -0700 | [diff] [blame] | 1501 | $(if $(PRIVATE_JAVA_LAYERS_FILE), $(hide) build/tools/java-layers.py \ |
| 1502 | $(PRIVATE_JAVA_LAYERS_FILE) \@$(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list-uniq,) |
Ying Wang | 015edd2 | 2011-01-20 15:01:56 -0800 | [diff] [blame] | 1503 | $(hide) rm -f $(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list |
| 1504 | $(hide) rm -f $(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list-uniq |
Ying Wang | 5758b8e | 2011-12-15 16:36:55 -0800 | [diff] [blame] | 1505 | $(if $(PRIVATE_JAR_EXCLUDE_FILES), $(hide) find $(PRIVATE_CLASS_INTERMEDIATES_DIR) \ |
| 1506 | -name $(word 1, $(PRIVATE_JAR_EXCLUDE_FILES)) \ |
| 1507 | $(addprefix -o -name , $(wordlist 2, 999, $(PRIVATE_JAR_EXCLUDE_FILES))) \ |
| 1508 | | xargs rm -rf) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1509 | $(hide) jar $(if $(strip $(PRIVATE_JAR_MANIFEST)),-cfm,-cf) \ |
| 1510 | $@ $(PRIVATE_JAR_MANIFEST) -C $(PRIVATE_CLASS_INTERMEDIATES_DIR) . |
Brian Carlstrom | 7826951 | 2010-12-10 12:10:24 -0800 | [diff] [blame] | 1511 | endef |
| 1512 | |
| 1513 | define transform-java-to-classes.jar |
| 1514 | @echo "target Java: $(PRIVATE_MODULE) ($(PRIVATE_CLASS_INTERMEDIATES_DIR))" |
| 1515 | $(call compile-java,$(TARGET_JAVAC),$(PRIVATE_BOOTCLASSPATH)) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1516 | endef |
| 1517 | |
Ying Wang | 015edd2 | 2011-01-20 15:01:56 -0800 | [diff] [blame] | 1518 | # Override the above definitions if we want to do incremetal javac |
| 1519 | ifeq (true, $(ENABLE_INCREMENTALJAVAC)) |
| 1520 | define compile-java |
| 1521 | $(hide) mkdir -p $(dir $@) |
| 1522 | $(hide) mkdir -p $(PRIVATE_CLASS_INTERMEDIATES_DIR) |
| 1523 | $(hide) touch $(PRIVATE_CLASS_INTERMEDIATES_DIR)/newstamp |
| 1524 | $(call unzip-jar-files,$(PRIVATE_STATIC_JAVA_LIBRARIES),$(PRIVATE_CLASS_INTERMEDIATES_DIR)) |
| 1525 | $(hide) if [ -e $(PRIVATE_CLASS_INTERMEDIATES_DIR)/stamp ] ; then \ |
| 1526 | newerFlag=$$(echo -n "-newer $(PRIVATE_CLASS_INTERMEDIATES_DIR)/stamp") ; \ |
| 1527 | fi ; \ |
| 1528 | find $(PRIVATE_JAVA_SOURCES) $$newerFlag > $(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list ; \ |
| 1529 | if [ -d "$(PRIVATE_SOURCE_INTERMEDIATES_DIR)" ]; then \ |
| 1530 | find $(PRIVATE_SOURCE_INTERMEDIATES_DIR) -name '*.java' $$newerFlag >> $(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list; \ |
| 1531 | fi |
| 1532 | $(hide) tr ' ' '\n' < $(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list \ |
| 1533 | | sort -u > $(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list-uniq |
| 1534 | @echo "(Incremental) build source files:" |
| 1535 | @cat $(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list-uniq |
| 1536 | $(hide) if [ -s $(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list-uniq ] ; then \ |
Joe Onorato | 149dd91 | 2011-05-31 18:21:07 -0700 | [diff] [blame] | 1537 | $(1) -encoding UTF-8 \ |
Ying Wang | 015edd2 | 2011-01-20 15:01:56 -0800 | [diff] [blame] | 1538 | $(strip $(PRIVATE_JAVAC_DEBUG_FLAGS)) \ |
Ying Wang | 057eba0 | 2012-10-18 10:54:49 -0700 | [diff] [blame] | 1539 | $(if $(findstring true,$(PRIVATE_WARNINGS_ENABLE)),$(xlint_unchecked),) \ |
Ying Wang | 015edd2 | 2011-01-20 15:01:56 -0800 | [diff] [blame] | 1540 | $(2) \ |
| 1541 | $(addprefix -classpath ,$(strip \ |
| 1542 | $(call normalize-path-list,$(PRIVATE_ALL_JAVA_LIBRARIES) $(PRIVATE_CLASS_INTERMEDIATES_DIR)))) \ |
Ying Wang | 057eba0 | 2012-10-18 10:54:49 -0700 | [diff] [blame] | 1543 | $(if $(findstring true,$(PRIVATE_WARNINGS_ENABLE)),$(xlint_unchecked),) \ |
Ying Wang | 015edd2 | 2011-01-20 15:01:56 -0800 | [diff] [blame] | 1544 | -extdirs "" -d $(PRIVATE_CLASS_INTERMEDIATES_DIR) \ |
| 1545 | $(PRIVATE_JAVACFLAGS) \ |
| 1546 | \@$(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list-uniq \ |
| 1547 | || ( exit 41 ) \ |
| 1548 | fi |
| 1549 | $(hide) rm -f $(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list |
| 1550 | $(hide) rm -f $(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list-uniq |
| 1551 | $(hide) rm -f $@ |
Ying Wang | ae25ec1 | 2012-06-19 10:40:37 -0700 | [diff] [blame] | 1552 | $(if $(PRIVATE_JAR_EXCLUDE_FILES), $(hide) find $(PRIVATE_CLASS_INTERMEDIATES_DIR) \ |
| 1553 | -name $(word 1, $(PRIVATE_JAR_EXCLUDE_FILES)) \ |
| 1554 | $(addprefix -o -name , $(wordlist 2, 999, $(PRIVATE_JAR_EXCLUDE_FILES))) \ |
| 1555 | | xargs rm -rf) |
Ying Wang | 015edd2 | 2011-01-20 15:01:56 -0800 | [diff] [blame] | 1556 | $(hide) jar $(if $(strip $(PRIVATE_JAR_MANIFEST)),-cfm,-cf) \ |
| 1557 | $@ $(PRIVATE_JAR_MANIFEST) -C $(PRIVATE_CLASS_INTERMEDIATES_DIR) . |
| 1558 | $(hide) mv $(PRIVATE_CLASS_INTERMEDIATES_DIR)/newstamp $(PRIVATE_CLASS_INTERMEDIATES_DIR)/stamp |
| 1559 | endef |
| 1560 | |
| 1561 | define transform-java-to-classes.jar |
| 1562 | @echo "target Java: $(PRIVATE_MODULE) ($(PRIVATE_CLASS_INTERMEDIATES_DIR))" |
| 1563 | $(call compile-java,$(TARGET_JAVAC),$(PRIVATE_BOOTCLASSPATH)) |
| 1564 | endef |
| 1565 | endif # ENABLE_INCREMENTALJAVAC |
| 1566 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1567 | define transform-classes.jar-to-emma |
| 1568 | $(hide) java -classpath $(EMMA_JAR) emma instr -outmode fullcopy -outfile \ |
Guang Zhu | 155afe3 | 2010-03-10 15:48:03 -0800 | [diff] [blame] | 1569 | $(PRIVATE_EMMA_COVERAGE_FILE) -ip $< -d $(PRIVATE_EMMA_INTERMEDIATES_DIR) \ |
Guang Zhu | 9cd3d8c | 2010-06-15 13:31:25 -0700 | [diff] [blame] | 1570 | $(addprefix -ix , $(PRIVATE_EMMA_COVERAGE_FILTER)) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1571 | endef |
| 1572 | |
| 1573 | #TODO: use a smaller -Xmx value for most libraries; |
| 1574 | # only core.jar and framework.jar need a heap this big. |
Raphael | f6ff4c5 | 2009-08-18 14:43:32 -0700 | [diff] [blame] | 1575 | # Avoid the memory arguments on Windows, dx fails to load for some reason with them. |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1576 | define transform-classes.jar-to-dex |
| 1577 | @echo "target Dex: $(PRIVATE_MODULE)" |
| 1578 | @mkdir -p $(dir $@) |
Raphael | f6ff4c5 | 2009-08-18 14:43:32 -0700 | [diff] [blame] | 1579 | $(hide) $(DX) \ |
Wink Saville | 29b3afa | 2012-01-30 15:30:10 -0800 | [diff] [blame] | 1580 | $(if $(findstring windows,$(HOST_OS)),,-JXms16M -JXmx2048M) \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1581 | --dex --output=$@ \ |
Brian Carlstrom | bb7c6d8 | 2011-04-01 15:45:58 -0700 | [diff] [blame] | 1582 | $(incremental_dex) \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1583 | $(if $(NO_OPTIMIZE_DX), \ |
| 1584 | --no-optimize) \ |
| 1585 | $(if $(GENERATE_DEX_DEBUG), \ |
| 1586 | --debug --verbose \ |
| 1587 | --dump-to=$(@:.dex=.lst) \ |
| 1588 | --dump-width=1000) \ |
| 1589 | $(PRIVATE_DX_FLAGS) \ |
| 1590 | $< |
| 1591 | endef |
| 1592 | |
| 1593 | # Create a mostly-empty .jar file that we'll add to later. |
| 1594 | # The MacOS jar tool doesn't like creating empty jar files, |
| 1595 | # so we need to give it something. |
| 1596 | define create-empty-package |
| 1597 | @mkdir -p $(dir $@) |
| 1598 | $(hide) touch $(dir $@)/dummy |
| 1599 | $(hide) (cd $(dir $@) && jar cf $(notdir $@) dummy) |
| 1600 | $(hide) zip -qd $@ dummy |
| 1601 | $(hide) rm $(dir $@)/dummy |
| 1602 | endef |
| 1603 | |
| 1604 | #TODO: we kinda want to build different asset packages for |
| 1605 | # different configurations, then combine them later (or something). |
| 1606 | # Per-locale, etc. |
| 1607 | # A list of dynamic and static parameters; build layers for |
| 1608 | # dynamic params that lay over the static ones. |
| 1609 | #TODO: update the manifest to point to the package file |
Dianne Hackborn | 9bd5404 | 2009-05-15 18:01:20 -0700 | [diff] [blame] | 1610 | #Note that the version numbers are given to aapt as simple default |
| 1611 | #values; applications can override these by explicitly stating |
| 1612 | #them in their manifest. |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1613 | define add-assets-to-package |
Ying Wang | c61d593 | 2010-03-10 16:02:42 -0800 | [diff] [blame] | 1614 | $(hide) $(AAPT) package -u $(PRIVATE_AAPT_FLAGS) \ |
Ying Wang | 4f1ab92 | 2011-03-15 13:19:30 -0700 | [diff] [blame] | 1615 | $(addprefix -c , $(PRIVATE_PRODUCT_AAPT_CONFIG)) \ |
Dianne Hackborn | a0f464a | 2011-10-14 19:37:57 -0700 | [diff] [blame] | 1616 | $(addprefix --preferred-configurations , $(PRIVATE_PRODUCT_AAPT_PREF_CONFIG)) \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1617 | $(addprefix -M , $(PRIVATE_ANDROID_MANIFEST)) \ |
| 1618 | $(addprefix -S , $(PRIVATE_RESOURCE_DIR)) \ |
| 1619 | $(addprefix -A , $(PRIVATE_ASSET_DIR)) \ |
| 1620 | $(addprefix -I , $(PRIVATE_AAPT_INCLUDES)) \ |
Ying Wang | bb9c230 | 2011-04-08 17:27:35 -0700 | [diff] [blame] | 1621 | $(addprefix --min-sdk-version , $(PRIVATE_DEFAULT_APP_TARGET_SDK)) \ |
| 1622 | $(addprefix --target-sdk-version , $(PRIVATE_DEFAULT_APP_TARGET_SDK)) \ |
Joe Onorato | 700b88e | 2010-10-05 17:33:58 -0400 | [diff] [blame] | 1623 | $(addprefix --product , $(TARGET_AAPT_CHARACTERISTICS)) \ |
Ying Wang | 1ae607a | 2010-06-23 13:34:22 -0700 | [diff] [blame] | 1624 | $(if $(filter --version-code,$(PRIVATE_AAPT_FLAGS)),,$(addprefix --version-code , $(PLATFORM_SDK_VERSION))) \ |
Ying Wang | 8f5069b | 2010-06-29 11:08:13 -0700 | [diff] [blame] | 1625 | $(if $(filter --version-name,$(PRIVATE_AAPT_FLAGS)),,$(addprefix --version-name , $(PLATFORM_VERSION)-$(BUILD_NUMBER))) \ |
Jeff Hamilton | bb67d21 | 2010-02-05 22:36:42 -0600 | [diff] [blame] | 1626 | $(addprefix --rename-manifest-package , $(PRIVATE_MANIFEST_PACKAGE_NAME)) \ |
Ying Wang | 3dae0ee | 2010-09-02 15:41:01 -0700 | [diff] [blame] | 1627 | $(addprefix --rename-instrumentation-target-package , $(PRIVATE_MANIFEST_INSTRUMENTATION_FOR)) \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1628 | -F $@ |
| 1629 | endef |
| 1630 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1631 | define add-jni-shared-libs-to-package |
| 1632 | $(hide) rm -rf $(dir $@)lib |
Jack Palevich | a0ab29b | 2010-06-18 15:38:07 +0800 | [diff] [blame] | 1633 | $(hide) mkdir -p $(dir $@)lib/$(PRIVATE_JNI_SHARED_LIBRARIES_ABI) |
| 1634 | $(hide) cp $(PRIVATE_JNI_SHARED_LIBRARIES) $(dir $@)lib/$(PRIVATE_JNI_SHARED_LIBRARIES_ABI) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1635 | $(hide) (cd $(dir $@) && zip -r $(notdir $@) lib) |
| 1636 | $(hide) rm -rf $(dir $@)lib |
| 1637 | endef |
| 1638 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1639 | #TODO: update the manifest to point to the dex file |
| 1640 | define add-dex-to-package |
Ying Wang | 957fea5 | 2010-09-23 11:48:38 -0700 | [diff] [blame] | 1641 | $(if $(filter classes.dex,$(notdir $(PRIVATE_DEX_FILE))),\ |
-b master | c3ccfee | 2013-01-23 16:54:32 -0800 | [diff] [blame] | 1642 | $(hide) zip -qj $@ $(PRIVATE_DEX_FILE),\ |
Ying Wang | 6e7db38 | 2011-07-27 12:49:15 -0700 | [diff] [blame] | 1643 | $(hide) _adtp_classes_dex=$(dir $(PRIVATE_DEX_FILE))classes.dex; \ |
| 1644 | cp $(PRIVATE_DEX_FILE) $$_adtp_classes_dex && \ |
-b master | c3ccfee | 2013-01-23 16:54:32 -0800 | [diff] [blame] | 1645 | zip -qj $@ $$_adtp_classes_dex && rm -f $$_adtp_classes_dex) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1646 | endef |
| 1647 | |
Ying Wang | 8548062 | 2012-08-09 15:20:50 -0700 | [diff] [blame] | 1648 | # Add java resources added by the current module. |
| 1649 | # |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1650 | define add-java-resources-to-package |
Ying Wang | 194a8ec | 2011-06-06 14:34:52 -0700 | [diff] [blame] | 1651 | $(call dump-words-to-file, $(PRIVATE_EXTRA_JAR_ARGS), $(dir $@)jar-arg-list) |
| 1652 | $(hide) jar uf $@ @$(dir $@)jar-arg-list |
| 1653 | @rm -f $(dir $@)jar-arg-list |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1654 | endef |
| 1655 | |
Ying Wang | 8548062 | 2012-08-09 15:20:50 -0700 | [diff] [blame] | 1656 | # Add java resources carried by static Java libraries. |
| 1657 | # |
| 1658 | define add-carried-java-resources |
| 1659 | $(hide) if [ -d $(PRIVATE_CLASS_INTERMEDIATES_DIR) ] ; then \ |
| 1660 | java_res_jar_flags=$$(find $(PRIVATE_CLASS_INTERMEDIATES_DIR) -type f -a -not -name "*.class" \ |
| 1661 | | sed -e "s?^$(PRIVATE_CLASS_INTERMEDIATES_DIR)/? -C $(PRIVATE_CLASS_INTERMEDIATES_DIR) ?"); \ |
| 1662 | if [ -n "$$java_res_jar_flags" ] ; then \ |
| 1663 | echo $$java_res_jar_flags >$(dir $@)java_res_jar_flags; \ |
| 1664 | jar uf $@ $$java_res_jar_flags; \ |
| 1665 | fi; \ |
| 1666 | fi |
| 1667 | endef |
| 1668 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1669 | # Sign a package using the specified key/cert. |
| 1670 | # |
| 1671 | define sign-package |
| 1672 | $(hide) mv $@ $@.unsigned |
| 1673 | $(hide) java -jar $(SIGNAPK_JAR) \ |
Ying Wang | 31df068 | 2012-11-13 10:55:28 -0800 | [diff] [blame] | 1674 | $(PRIVATE_CERTIFICATE) $(PRIVATE_PRIVATE_KEY) \ |
| 1675 | $(PRIVATE_ADDITIONAL_CERTIFICATES) $@.unsigned $@.signed |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1676 | $(hide) mv $@.signed $@ |
| 1677 | endef |
| 1678 | |
| 1679 | # Align STORED entries of a package on 4-byte boundaries |
| 1680 | # to make them easier to mmap. |
| 1681 | # |
| 1682 | define align-package |
| 1683 | $(hide) mv $@ $@.unaligned |
| 1684 | $(hide) $(ZIPALIGN) -f 4 $@.unaligned $@.aligned |
| 1685 | $(hide) mv $@.aligned $@ |
| 1686 | endef |
| 1687 | |
| 1688 | define install-dex-debug |
| 1689 | $(hide) if [ -f "$(PRIVATE_INTERMEDIATES_DIR)/classes.dex" ]; then \ |
| 1690 | mkdir -p $(TOP)/dalvik/DEBUG-FILES; \ |
| 1691 | $(ACP) $(PRIVATE_INTERMEDIATES_DIR)/classes.dex \ |
| 1692 | $(TOP)/dalvik/DEBUG-FILES/$(PRIVATE_MODULE).dex; \ |
| 1693 | fi |
| 1694 | $(hide) if [ -f "$(PRIVATE_INTERMEDIATES_DIR)/classes.lst" ]; then \ |
| 1695 | mkdir -p $(TOP)/dalvik/DEBUG-FILES; \ |
| 1696 | $(ACP) $(PRIVATE_INTERMEDIATES_DIR)/classes.lst \ |
| 1697 | $(TOP)/dalvik/DEBUG-FILES/$(PRIVATE_MODULE).lst; \ |
| 1698 | fi |
| 1699 | endef |
| 1700 | |
| 1701 | # TODO(joeo): If we can ever upgrade to post 3.81 make and get the |
| 1702 | # new prebuilt rules to work, we should change this to copy the |
| 1703 | # resources to the out directory and then copy the resources. |
| 1704 | |
Brian Carlstrom | 7826951 | 2010-12-10 12:10:24 -0800 | [diff] [blame] | 1705 | # Note: we intentionally don't clean PRIVATE_CLASS_INTERMEDIATES_DIR |
| 1706 | # in transform-java-to-classes for the sake of vm-tests. |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1707 | define transform-host-java-to-package |
| 1708 | @echo "host Java: $(PRIVATE_MODULE) ($(PRIVATE_CLASS_INTERMEDIATES_DIR))" |
Ying Wang | 015edd2 | 2011-01-20 15:01:56 -0800 | [diff] [blame] | 1709 | $(call compile-java,$(HOST_JAVAC),$(PRIVATE_BOOTCLASSPATH)) |
Ying Wang | 194a8ec | 2011-06-06 14:34:52 -0700 | [diff] [blame] | 1710 | $(if $(PRIVATE_EXTRA_JAR_ARGS), $(call add-java-resources-to-package)) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1711 | endef |
| 1712 | |
| 1713 | ########################################################### |
| 1714 | ## Obfuscate a jar file |
| 1715 | ########################################################### |
| 1716 | |
| 1717 | # PRIVATE_KEEP_FILE is a file containing a list of classes |
| 1718 | # PRIVATE_INTERMEDIATES_DIR is a directory we can use for temporary files |
| 1719 | # The module using this must depend on |
| 1720 | # $(HOST_OUT_JAVA_LIBRARIES)/proguard-4.0.1.jar |
| 1721 | define obfuscate-jar |
| 1722 | @echo "Obfuscate jar: $(notdir $@) ($@)" |
| 1723 | @mkdir -p $(dir $@) |
| 1724 | @rm -f $@ |
| 1725 | @mkdir -p $(PRIVATE_INTERMEDIATES_DIR) |
| 1726 | $(hide) sed -e 's/^/-keep class /' < $(PRIVATE_KEEP_FILE) > \ |
| 1727 | $(PRIVATE_INTERMEDIATES_DIR)/keep.pro |
| 1728 | $(hide) java -Xmx512M -jar $(HOST_OUT_JAVA_LIBRARIES)/proguard-4.0.1.jar \ |
| 1729 | -injars $< \ |
| 1730 | -outjars $@ \ |
| 1731 | -target 1.5 \ |
| 1732 | -dontnote -dontwarn \ |
| 1733 | -printmapping $(PRIVATE_INTERMEDIATES_DIR)/out.map \ |
| 1734 | -forceprocessing \ |
| 1735 | -renamesourcefileattribute SourceFile \ |
| 1736 | -keepattributes Exceptions,InnerClasses,Signature,Deprecated,SourceFile,LineNumberTable,*Annotation*,EnclosingMethod \ |
| 1737 | -repackageclasses \ |
| 1738 | -keepclassmembers "class * { public protected *; }" \ |
| 1739 | @$(PRIVATE_INTERMEDIATES_DIR)/keep.pro |
| 1740 | endef |
| 1741 | |
| 1742 | ########################################################### |
| 1743 | ## Commands for copying files |
| 1744 | ########################################################### |
| 1745 | |
| 1746 | # Define a rule to copy a header. Used via $(eval) by copy_headers.make. |
| 1747 | # $(1): source header |
| 1748 | # $(2): destination header |
| 1749 | define copy-one-header |
| 1750 | $(2): $(1) |
| 1751 | @echo "Header: $$@" |
| 1752 | $$(copy-file-to-new-target-with-cp) |
| 1753 | endef |
| 1754 | |
| 1755 | # Define a rule to copy a file. For use via $(eval). |
| 1756 | # $(1): source file |
| 1757 | # $(2): destination file |
| 1758 | define copy-one-file |
| 1759 | $(2): $(1) | $(ACP) |
| 1760 | @echo "Copy: $$@" |
| 1761 | $$(copy-file-to-target) |
| 1762 | endef |
| 1763 | |
Joe Onorato | e44705a | 2012-05-17 17:12:04 -0700 | [diff] [blame] | 1764 | # Copies many files. |
| 1765 | # $(1): The files to copy. Each entry is a ':' separated src:dst pair |
| 1766 | # Evaluates to the list of the dst files (ie suitable for a dependency list) |
| 1767 | define copy-many-files |
| 1768 | $(foreach f, $(1), $(strip \ |
| 1769 | $(eval _cmf_tuple := $(subst :, ,$(f))) \ |
| 1770 | $(eval _cmf_src := $(word 1,$(_cmf_tuple))) \ |
| 1771 | $(eval _cmf_dest := $(word 2,$(_cmf_tuple))) \ |
| 1772 | $(eval $(call copy-one-file,$(_cmf_src),$(_cmf_dest))) \ |
| 1773 | $(_cmf_dest))) |
| 1774 | endef |
| 1775 | |
Ying Wang | 3ceecfa | 2012-05-14 14:39:00 -0700 | [diff] [blame] | 1776 | # Copy the file only if it's a well-formed xml file. For use via $(eval). |
| 1777 | # $(1): source file |
| 1778 | # $(2): destination file, must end with .xml. |
| 1779 | define copy-xml-file-checked |
| 1780 | $(2): $(1) | $(ACP) |
| 1781 | @echo "Copy xml: $$@" |
| 1782 | $(hide) xmllint $$< >/dev/null # Don't print the xml file to stdout. |
| 1783 | $$(copy-file-to-target) |
| 1784 | endef |
| 1785 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1786 | # The -t option to acp and the -p option to cp is |
| 1787 | # required for OSX. OSX has a ridiculous restriction |
| 1788 | # where it's an error for a .a file's modification time |
| 1789 | # to disagree with an internal timestamp, and this |
| 1790 | # macro is used to install .a files (among other things). |
| 1791 | |
| 1792 | # Copy a single file from one place to another, |
| 1793 | # preserving permissions and overwriting any existing |
| 1794 | # file. |
Ian Rogers | 76a6dc3 | 2012-10-01 16:36:23 -0700 | [diff] [blame] | 1795 | # We disable the "-t" option for acp cannot handle |
Ying Wang | 84ed6fa | 2011-01-18 17:21:20 -0800 | [diff] [blame] | 1796 | # high resolution timestamp correctly on file systems like ext4. |
| 1797 | # Therefore copy-file-to-target is the same as copy-file-to-new-target. |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1798 | define copy-file-to-target |
| 1799 | @mkdir -p $(dir $@) |
Ying Wang | 84ed6fa | 2011-01-18 17:21:20 -0800 | [diff] [blame] | 1800 | $(hide) $(ACP) -fp $< $@ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1801 | endef |
| 1802 | |
| 1803 | # The same as copy-file-to-target, but use the local |
| 1804 | # cp command instead of acp. |
| 1805 | define copy-file-to-target-with-cp |
| 1806 | @mkdir -p $(dir $@) |
| 1807 | $(hide) cp -fp $< $@ |
| 1808 | endef |
| 1809 | |
Dianne Hackborn | 9c0c4b7 | 2009-08-11 19:16:46 -0700 | [diff] [blame] | 1810 | # The same as copy-file-to-target, but use the zipalign tool to do so. |
| 1811 | define copy-file-to-target-with-zipalign |
| 1812 | @mkdir -p $(dir $@) |
| 1813 | $(hide) $(ZIPALIGN) -f 4 $< $@ |
| 1814 | endef |
| 1815 | |
Doug Zongker | 1046d20 | 2009-08-06 13:02:19 -0700 | [diff] [blame] | 1816 | # The same as copy-file-to-target, but strip out "# comment"-style |
| 1817 | # comments (for config files and such). |
| 1818 | define copy-file-to-target-strip-comments |
| 1819 | @mkdir -p $(dir $@) |
| 1820 | $(hide) sed -e 's/#.*$$//' -e 's/[ \t]*$$//' -e '/^$$/d' < $< > $@ |
| 1821 | endef |
| 1822 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1823 | # The same as copy-file-to-target, but don't preserve |
| 1824 | # the old modification time. |
| 1825 | define copy-file-to-new-target |
| 1826 | @mkdir -p $(dir $@) |
| 1827 | $(hide) $(ACP) -fp $< $@ |
| 1828 | endef |
| 1829 | |
| 1830 | # The same as copy-file-to-new-target, but use the local |
| 1831 | # cp command instead of acp. |
| 1832 | define copy-file-to-new-target-with-cp |
| 1833 | @mkdir -p $(dir $@) |
| 1834 | $(hide) cp -f $< $@ |
| 1835 | endef |
| 1836 | |
| 1837 | # Copy a prebuilt file to a target location. |
| 1838 | define transform-prebuilt-to-target |
| 1839 | @echo "$(if $(PRIVATE_IS_HOST_MODULE),host,target) Prebuilt: $(PRIVATE_MODULE) ($@)" |
| 1840 | $(copy-file-to-target) |
| 1841 | endef |
| 1842 | |
Dianne Hackborn | 9c0c4b7 | 2009-08-11 19:16:46 -0700 | [diff] [blame] | 1843 | # Copy a prebuilt file to a target location, using zipalign on it. |
| 1844 | define transform-prebuilt-to-target-with-zipalign |
| 1845 | @echo "$(if $(PRIVATE_IS_HOST_MODULE),host,target) Prebuilt APK: $(PRIVATE_MODULE) ($@)" |
| 1846 | $(copy-file-to-target-with-zipalign) |
| 1847 | endef |
| 1848 | |
Doug Zongker | 1046d20 | 2009-08-06 13:02:19 -0700 | [diff] [blame] | 1849 | # Copy a prebuilt file to a target location, stripping "# comment" comments. |
| 1850 | define transform-prebuilt-to-target-strip-comments |
| 1851 | @echo "$(if $(PRIVATE_IS_HOST_MODULE),host,target) Prebuilt: $(PRIVATE_MODULE) ($@)" |
| 1852 | $(copy-file-to-target-strip-comments) |
| 1853 | endef |
| 1854 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1855 | ########################################################### |
| 1856 | ## On some platforms (MacOS), after copying a static |
| 1857 | ## library, ranlib must be run to update an internal |
| 1858 | ## timestamp!?!?! |
| 1859 | ########################################################### |
| 1860 | |
| 1861 | ifeq ($(HOST_RUN_RANLIB_AFTER_COPYING),true) |
| 1862 | define transform-host-ranlib-copy-hack |
| 1863 | $(hide) ranlib $@ || true |
| 1864 | endef |
| 1865 | else |
| 1866 | define transform-host-ranlib-copy-hack |
Patrick Scott | 0e27dff | 2010-05-07 08:37:11 -0400 | [diff] [blame] | 1867 | @true |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1868 | endef |
| 1869 | endif |
| 1870 | |
| 1871 | ifeq ($(TARGET_RUN_RANLIB_AFTER_COPYING),true) |
| 1872 | define transform-ranlib-copy-hack |
| 1873 | $(hide) ranlib $@ |
| 1874 | endef |
| 1875 | else |
| 1876 | define transform-ranlib-copy-hack |
Patrick Scott | 0e27dff | 2010-05-07 08:37:11 -0400 | [diff] [blame] | 1877 | @true |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1878 | endef |
| 1879 | endif |
| 1880 | |
| 1881 | |
| 1882 | ########################################################### |
Ying Wang | 3b2bdf1 | 2010-02-01 09:51:23 -0800 | [diff] [blame] | 1883 | ## Commands to call Proguard |
| 1884 | ########################################################### |
| 1885 | |
| 1886 | # Command to copy the file with acp, if proguard is disabled. |
| 1887 | define proguard-disabled-commands |
| 1888 | @echo Copying: $@ |
Ying Wang | 84ed6fa | 2011-01-18 17:21:20 -0800 | [diff] [blame] | 1889 | $(hide) $(ACP) -fp $< $@ |
Ying Wang | 3b2bdf1 | 2010-02-01 09:51:23 -0800 | [diff] [blame] | 1890 | endef |
| 1891 | |
| 1892 | # Command to call Proguard |
| 1893 | # $(1): extra flags for instrumentation. |
| 1894 | define proguard-enabled-commands |
| 1895 | @echo Proguard: $@ |
| 1896 | $(hide) $(PROGUARD) -injars $< -outjars $@ $(PRIVATE_PROGUARD_FLAGS) $(1) |
| 1897 | endef |
| 1898 | |
| 1899 | # Figure out the proguard dictionary file of the module that is instrumentationed for. |
| 1900 | define get-instrumentation-proguard-flags |
| 1901 | $(if $(PRIVATE_INSTRUMENTATION_FOR),$(if $(ALL_MODULES.$(PRIVATE_INSTRUMENTATION_FOR).PROGUARD_ENABLED),-applymapping $(call intermediates-dir-for,APPS,$(PRIVATE_INSTRUMENTATION_FOR),,COMMON)/proguard_dictionary)) |
| 1902 | endef |
| 1903 | |
| 1904 | define transform-jar-to-proguard |
| 1905 | $(eval _instrumentation_proguard_flags:=$(call get-instrumentation-proguard-flags)) |
| 1906 | $(eval _enable_proguard:=$(PRIVATE_PROGUARD_ENABLED)$(_instrumentation_proguard_flags)) |
| 1907 | $(if $(_enable_proguard),$(call proguard-enabled-commands,$(_instrumentation_proguard_flags)),$(call proguard-disabled-commands)) |
| 1908 | $(eval _instrumentation_proguard_flags:=) |
| 1909 | $(eval _enable_proguard:=) |
| 1910 | endef |
| 1911 | |
| 1912 | |
| 1913 | ########################################################### |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1914 | ## Stuff source generated from one-off tools |
| 1915 | ########################################################### |
| 1916 | |
| 1917 | define transform-generated-source |
| 1918 | @echo "target Generated: $(PRIVATE_MODULE) <= $<" |
| 1919 | @mkdir -p $(dir $@) |
| 1920 | $(hide) $(PRIVATE_CUSTOM_TOOL) |
| 1921 | endef |
| 1922 | |
| 1923 | |
| 1924 | ########################################################### |
| 1925 | ## Assertions about attributes of the target |
| 1926 | ########################################################### |
| 1927 | |
| 1928 | # $(1): The file to check |
| 1929 | ifndef get-file-size |
| 1930 | $(error HOST_OS must define get-file-size) |
| 1931 | endif |
| 1932 | |
Doug Zongker | 4647f12 | 2009-07-02 09:00:54 -0700 | [diff] [blame] | 1933 | # Convert a partition data size (eg, as reported in /proc/mtd) to the |
| 1934 | # size of the image used to flash that partition (which includes a |
Lars Svensson | 9cb8c28 | 2010-12-06 15:24:58 +0100 | [diff] [blame] | 1935 | # spare area for each page). |
Doug Zongker | 4647f12 | 2009-07-02 09:00:54 -0700 | [diff] [blame] | 1936 | # $(1): the partition data size |
| 1937 | define image-size-from-data-size |
Ying Wang | 4a2ecaf | 2011-02-09 17:24:27 -0800 | [diff] [blame] | 1938 | $(strip $(eval _isfds_value := $$(shell echo $$$$(($(1) / $(BOARD_NAND_PAGE_SIZE) * \ |
| 1939 | ($(BOARD_NAND_PAGE_SIZE)+$(BOARD_NAND_SPARE_SIZE))))))\ |
| 1940 | $(if $(filter 0, $(_isfds_value)),$(shell echo $$(($(BOARD_NAND_PAGE_SIZE)+$(BOARD_NAND_SPARE_SIZE)))),$(_isfds_value))\ |
| 1941 | $(eval _isfds_value :=)) |
Doug Zongker | 4647f12 | 2009-07-02 09:00:54 -0700 | [diff] [blame] | 1942 | endef |
| 1943 | |
| 1944 | # $(1): The file(s) to check (often $@) |
| 1945 | # $(2): The maximum total image size, in decimal bytes |
Doug Zongker | 6dd2ae0 | 2009-08-25 17:23:57 -0700 | [diff] [blame] | 1946 | # $(3): the type of filesystem "yaffs" or "raw" |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1947 | # |
| 1948 | # If $(2) is empty, evaluates to "true" |
| 1949 | # |
| 1950 | # Reserve bad blocks. Make sure that MAX(1% of partition size, 2 blocks) |
| 1951 | # is left over after the image has been flashed. Round the 1% up to the |
| 1952 | # next whole flash block size. |
| 1953 | define assert-max-file-size |
| 1954 | $(if $(2), \ |
Doug Zongker | 742fa57 | 2009-07-08 12:09:04 -0700 | [diff] [blame] | 1955 | size=$$(for i in $(1); do $(call get-file-size,$$i); echo +; done; echo 0); \ |
| 1956 | total=$$(( $$( echo "$$size" ) )); \ |
Doug Zongker | 4647f12 | 2009-07-02 09:00:54 -0700 | [diff] [blame] | 1957 | printname=$$(echo -n "$(1)" | tr " " +); \ |
Doug Zongker | 4647f12 | 2009-07-02 09:00:54 -0700 | [diff] [blame] | 1958 | img_blocksize=$(call image-size-from-data-size,$(BOARD_FLASH_BLOCK_SIZE)); \ |
Doug Zongker | 6dd2ae0 | 2009-08-25 17:23:57 -0700 | [diff] [blame] | 1959 | if [ "$(3)" == "yaffs" ]; then \ |
Doug Zongker | 93d9ff4 | 2009-09-14 17:46:41 -0700 | [diff] [blame] | 1960 | reservedblocks=8; \ |
Doug Zongker | 6dd2ae0 | 2009-08-25 17:23:57 -0700 | [diff] [blame] | 1961 | else \ |
Doug Zongker | 4ac1ba6 | 2009-08-25 20:38:50 -0700 | [diff] [blame] | 1962 | reservedblocks=0; \ |
Doug Zongker | 6dd2ae0 | 2009-08-25 17:23:57 -0700 | [diff] [blame] | 1963 | fi; \ |
Doug Zongker | 4647f12 | 2009-07-02 09:00:54 -0700 | [diff] [blame] | 1964 | twoblocks=$$((img_blocksize * 2)); \ |
| 1965 | onepct=$$((((($(2) / 100) - 1) / img_blocksize + 1) * img_blocksize)); \ |
Doug Zongker | 6dd2ae0 | 2009-08-25 17:23:57 -0700 | [diff] [blame] | 1966 | reserve=$$(((twoblocks > onepct ? twoblocks : onepct) + \ |
| 1967 | reservedblocks * img_blocksize)); \ |
Doug Zongker | 4647f12 | 2009-07-02 09:00:54 -0700 | [diff] [blame] | 1968 | maxsize=$$(($(2) - reserve)); \ |
Ying Wang | 99bcbeb | 2011-12-02 10:34:45 -0800 | [diff] [blame] | 1969 | echo "$$printname maxsize=$$maxsize blocksize=$$img_blocksize total=$$total reserve=$$reserve"; \ |
Doug Zongker | 4647f12 | 2009-07-02 09:00:54 -0700 | [diff] [blame] | 1970 | if [ "$$total" -gt "$$maxsize" ]; then \ |
| 1971 | echo "error: $$printname too large ($$total > [$(2) - $$reserve])"; \ |
| 1972 | false; \ |
Doug Zongker | 742fa57 | 2009-07-08 12:09:04 -0700 | [diff] [blame] | 1973 | elif [ "$$total" -gt $$((maxsize - 32768)) ]; then \ |
Doug Zongker | 4647f12 | 2009-07-02 09:00:54 -0700 | [diff] [blame] | 1974 | echo "WARNING: $$printname approaching size limit ($$total now; limit $$maxsize)"; \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1975 | fi \ |
| 1976 | , \ |
| 1977 | true \ |
| 1978 | ) |
| 1979 | endef |
| 1980 | |
Doug Zongker | 8510a1e | 2009-08-07 16:38:08 -0700 | [diff] [blame] | 1981 | # Like assert-max-file-size, but the second argument is a partition |
| 1982 | # size, which we'll convert to a max image size before checking it |
| 1983 | # against the files. |
| 1984 | # |
| 1985 | # $(1): The file(s) to check (often $@) |
| 1986 | # $(2): The partition size. |
| 1987 | define assert-max-image-size |
| 1988 | $(if $(2), \ |
| 1989 | $(call assert-max-file-size,$(1),$(call image-size-from-data-size,$(2))), \ |
| 1990 | true) |
| 1991 | endef |
| 1992 | |
Doug Zongker | e01100c | 2009-06-19 17:12:18 -0700 | [diff] [blame] | 1993 | |
| 1994 | ########################################################### |
| 1995 | ## Define device-specific radio files |
| 1996 | ########################################################### |
| 1997 | |
| 1998 | # Copy a radio image file to the output location, and add it to |
| 1999 | # INSTALLED_RADIOIMAGE_TARGET. |
| 2000 | # $(1): filename |
| 2001 | define add-radio-file |
Doug Zongker | 1483360 | 2010-02-02 13:12:04 -0800 | [diff] [blame] | 2002 | $(eval $(call add-radio-file-internal,$(1),$(notdir $(1)))) |
Doug Zongker | e01100c | 2009-06-19 17:12:18 -0700 | [diff] [blame] | 2003 | endef |
| 2004 | define add-radio-file-internal |
Doug Zongker | 1483360 | 2010-02-02 13:12:04 -0800 | [diff] [blame] | 2005 | INSTALLED_RADIOIMAGE_TARGET += $$(PRODUCT_OUT)/$(2) |
Doug Zongker | 1483360 | 2010-02-02 13:12:04 -0800 | [diff] [blame] | 2006 | $$(PRODUCT_OUT)/$(2) : $$(LOCAL_PATH)/$(1) | $$(ACP) |
Doug Zongker | e01100c | 2009-06-19 17:12:18 -0700 | [diff] [blame] | 2007 | $$(transform-prebuilt-to-target) |
| 2008 | endef |
| 2009 | |
Doug Zongker | 9296f09 | 2012-03-20 16:42:22 -0700 | [diff] [blame] | 2010 | # Version of add-radio-file that also arranges for the version of the |
| 2011 | # file to be checked against the contents of |
| 2012 | # $(TARGET_BOARD_INFO_FILE). |
| 2013 | # $(1): filename |
| 2014 | # $(2): name of version variable in board-info (eg, "version-baseband") |
| 2015 | define add-radio-file-checked |
| 2016 | $(eval $(call add-radio-file-checked-internal,$(1),$(notdir $(1)),$(2))) |
| 2017 | endef |
| 2018 | define add-radio-file-checked-internal |
| 2019 | INSTALLED_RADIOIMAGE_TARGET += $$(PRODUCT_OUT)/$(2) |
| 2020 | BOARD_INFO_CHECK += $(3):$(LOCAL_PATH)/$(1) |
| 2021 | $$(PRODUCT_OUT)/$(2) : $$(LOCAL_PATH)/$(1) | $$(ACP) |
| 2022 | $$(transform-prebuilt-to-target) |
| 2023 | endef |
| 2024 | |
Doug Zongker | e01100c | 2009-06-19 17:12:18 -0700 | [diff] [blame] | 2025 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 2026 | ########################################################### |
Joe Onorato | 899e62a | 2010-02-04 17:37:21 -0800 | [diff] [blame] | 2027 | # Override the package defined in $(1), setting the |
| 2028 | # variables listed below differently. |
| 2029 | # |
| 2030 | # $(1): The makefile to override (relative to the source |
| 2031 | # tree root) |
| 2032 | # $(2): Old LOCAL_PACKAGE_NAME value. |
| 2033 | # $(3): New LOCAL_PACKAGE_NAME value. |
Ying Wang | 3dae0ee | 2010-09-02 15:41:01 -0700 | [diff] [blame] | 2034 | # $(4): New LOCAL_MANIFEST_PACKAGE_NAME value. |
| 2035 | # $(5): New LOCAL_CERTIFICATE value. |
| 2036 | # $(6): New LOCAL_INSTRUMENTATION_FOR value. |
| 2037 | # $(7): New LOCAL_MANIFEST_INSTRUMENTATION_FOR value. |
Joe Onorato | 899e62a | 2010-02-04 17:37:21 -0800 | [diff] [blame] | 2038 | # |
| 2039 | # Note that LOCAL_PACKAGE_OVERRIDES is NOT cleared in |
| 2040 | # clear_vars.mk. |
| 2041 | ########################################################### |
| 2042 | define inherit-package |
Ying Wang | 3dae0ee | 2010-09-02 15:41:01 -0700 | [diff] [blame] | 2043 | $(eval $(call inherit-package-internal,$(1),$(2),$(3),$(4),$(5),$(6),$(7))) |
Joe Onorato | 899e62a | 2010-02-04 17:37:21 -0800 | [diff] [blame] | 2044 | endef |
| 2045 | |
| 2046 | define inherit-package-internal |
| 2047 | LOCAL_PACKAGE_OVERRIDES \ |
Ying Wang | 3dae0ee | 2010-09-02 15:41:01 -0700 | [diff] [blame] | 2048 | := $(strip $(1))||$(strip $(2))||$(strip $(3))||$(strip $(4))||&&$(strip $(5))||&&$(strip $(6))||&&$(strip $(7)) $(LOCAL_PACKAGE_OVERRIDES) |
Joe Onorato | 899e62a | 2010-02-04 17:37:21 -0800 | [diff] [blame] | 2049 | include $(1) |
| 2050 | LOCAL_PACKAGE_OVERRIDES \ |
| 2051 | := $(wordlist 1,$(words $(LOCAL_PACKAGE_OVERRIDES)), $(LOCAL_PACKAGE_OVERRIDES)) |
| 2052 | endef |
| 2053 | |
| 2054 | # To be used with inherit-package above |
| 2055 | # Evalutes to true if the package was overridden |
| 2056 | define set-inherited-package-variables |
| 2057 | $(strip $(call set-inherited-package-variables-internal)) |
| 2058 | endef |
| 2059 | |
| 2060 | define keep-or-override |
| 2061 | $(eval $(1) := $(if $(2),$(2),$($(1)))) |
| 2062 | endef |
| 2063 | |
| 2064 | define set-inherited-package-variables-internal |
| 2065 | $(eval _o := $(subst ||, ,$(lastword $(LOCAL_PACKAGE_OVERRIDES)))) |
| 2066 | $(eval _n := $(subst ||, ,$(firstword $(LOCAL_PACKAGE_OVERRIDES)))) |
| 2067 | $(if $(filter $(word 2,$(_n)),$(LOCAL_PACKAGE_NAME)), \ |
| 2068 | $(eval LOCAL_PACKAGE_NAME := $(word 3,$(_o))) \ |
| 2069 | $(eval LOCAL_MANIFEST_PACKAGE_NAME := $(word 4,$(_o))) \ |
Ying Wang | 3dae0ee | 2010-09-02 15:41:01 -0700 | [diff] [blame] | 2070 | $(call keep-or-override,LOCAL_CERTIFICATE,$(patsubst &&%,%,$(word 5,$(_o)))) \ |
| 2071 | $(call keep-or-override,LOCAL_INSTRUMENTATION_FOR,$(patsubst &&%,%,$(word 6,$(_o)))) \ |
| 2072 | $(call keep-or-override,LOCAL_MANIFEST_INSTRUMENTATION_FOR,$(patsubst &&%,%,$(word 7,$(_o)))) \ |
Joe Onorato | 899e62a | 2010-02-04 17:37:21 -0800 | [diff] [blame] | 2073 | $(eval LOCAL_OVERRIDES_PACKAGES := $(sort $(LOCAL_OVERRIDES_PACKAGES) $(word 2,$(_o)))) \ |
| 2074 | true \ |
| 2075 | ,) |
| 2076 | endef |
| 2077 | |
Ying Wang | 000e89a | 2012-04-30 15:48:27 -0700 | [diff] [blame] | 2078 | ########################################################### |
| 2079 | ## Expand a module name list with REQUIRED modules |
| 2080 | ########################################################### |
| 2081 | # $(1): The variable name that holds the initial module name list. |
| 2082 | # the variable will be modified to hold the expanded results. |
| 2083 | # $(2): The initial module name list. |
| 2084 | # Returns empty string (maybe with some whitespaces). |
| 2085 | define expand-required-modules |
| 2086 | $(eval _erm_new_modules := $(sort $(filter-out $($(1)),\ |
| 2087 | $(foreach m,$(2),$(ALL_MODULES.$(m).REQUIRED)))))\ |
| 2088 | $(if $(_erm_new_modules),$(eval $(1) += $(_erm_new_modules))\ |
| 2089 | $(call expand-required-modules,$(1),$(_erm_new_modules))) |
| 2090 | endef |
Joe Onorato | 899e62a | 2010-02-04 17:37:21 -0800 | [diff] [blame] | 2091 | |
| 2092 | ########################################################### |
Ying Wang | c065da2 | 2012-11-14 15:57:07 -0800 | [diff] [blame] | 2093 | ## API Check |
| 2094 | ########################################################### |
| 2095 | |
| 2096 | # eval this to define a rule that runs apicheck. |
| 2097 | # |
| 2098 | # Args: |
| 2099 | # $(1) target |
| 2100 | # $(2) stable api file |
| 2101 | # $(3) api file to be tested |
| 2102 | # $(4) arguments for apicheck |
| 2103 | # $(5) command to run if apicheck failed |
| 2104 | # $(6) target dependent on this api check |
| 2105 | # $(7) additional dependencies |
| 2106 | define check-api |
| 2107 | $(TARGET_OUT_COMMON_INTERMEDIATES)/PACKAGING/$(strip $(1))-timestamp: $(2) $(3) $(APICHECK) $(7) |
| 2108 | @echo "Checking API:" $(1) |
| 2109 | $(hide) ( $(APICHECK_COMMAND) $(4) $(2) $(3) || ( $(5) ; exit 38 ) ) |
| 2110 | $(hide) mkdir -p $$(dir $$@) |
| 2111 | $(hide) touch $$@ |
| 2112 | $(6): $(TARGET_OUT_COMMON_INTERMEDIATES)/PACKAGING/$(strip $(1))-timestamp |
| 2113 | endef |
| 2114 | |
Ying Wang | 63d94fa | 2012-12-13 18:23:01 -0800 | [diff] [blame] | 2115 | ## Whether to build from source if prebuilt alternative exists |
| 2116 | ########################################################### |
| 2117 | # $(1): module name |
| 2118 | # $(2): LOCAL_PATH |
| 2119 | # Expands to empty string if not from source. |
| 2120 | ifeq (true,$(ANDROID_BUILD_FROM_SOURCE)) |
| 2121 | define if-build-from-source |
| 2122 | true |
| 2123 | endef |
| 2124 | else |
| 2125 | define if-build-from-source |
| 2126 | $(if $(filter $(ANDROID_NO_PREBUILT_MODULES),$(1))$(filter \ |
| 2127 | $(addsuffix %,$(ANDROID_NO_PREBUILT_PATHS)),$(2)),true) |
| 2128 | endef |
| 2129 | endif |
| 2130 | |
| 2131 | # Include makefile $(1) if build from source for module $(2) |
| 2132 | # $(1): the makefile to include |
| 2133 | # $(2): module name |
| 2134 | # $(3): LOCAL_PATH |
| 2135 | define include-if-build-from-source |
| 2136 | $(if $(call if-build-from-source,$(2),$(3)),$(eval include $(1))) |
| 2137 | endef |
| 2138 | |
Ying Wang | c065da2 | 2012-11-14 15:57:07 -0800 | [diff] [blame] | 2139 | ########################################################### |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 2140 | ## Other includes |
| 2141 | ########################################################### |
| 2142 | |
| 2143 | # ----------------------------------------------------------------- |
| 2144 | # Rules and functions to help copy important files to DIST_DIR |
| 2145 | # when requested. |
| 2146 | include $(BUILD_SYSTEM)/distdir.mk |
| 2147 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 2148 | # broken: |
| 2149 | # $(foreach file,$^,$(if $(findstring,.a,$(suffix $file)),-l$(file),$(file))) |
| 2150 | |
| 2151 | ########################################################### |
| 2152 | ## Misc notes |
| 2153 | ########################################################### |
| 2154 | |
| 2155 | #DEPDIR = .deps |
| 2156 | #df = $(DEPDIR)/$(*F) |
| 2157 | |
| 2158 | #SRCS = foo.c bar.c ... |
| 2159 | |
| 2160 | #%.o : %.c |
| 2161 | # @$(MAKEDEPEND); \ |
| 2162 | # cp $(df).d $(df).P; \ |
| 2163 | # sed -e 's/#.*//' -e 's/^[^:]*: *//' -e 's/ *\\$$//' \ |
| 2164 | # -e '/^$$/ d' -e 's/$$/ :/' < $(df).d >> $(df).P; \ |
| 2165 | # rm -f $(df).d |
| 2166 | # $(COMPILE.c) -o $@ $< |
| 2167 | |
| 2168 | #-include $(SRCS:%.c=$(DEPDIR)/%.P) |
| 2169 | |
| 2170 | |
| 2171 | #%.o : %.c |
| 2172 | # $(COMPILE.c) -MD -o $@ $< |
| 2173 | # @cp $*.d $*.P; \ |
| 2174 | # sed -e 's/#.*//' -e 's/^[^:]*: *//' -e 's/ *\\$$//' \ |
| 2175 | # -e '/^$$/ d' -e 's/$$/ :/' < $*.d >> $*.P; \ |
| 2176 | # rm -f $*.d |