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