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