blob: f4da297355bcd82cf5e0e4cb0a0e0ba2197fbbb9 [file] [log] [blame]
The Android Open Source Project88b60792009-03-03 19:28:42 -08001#
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
27ALL_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.
38ALL_MODULES:=
39
40# Full paths to targets that should be added to the "make droid"
41# set of installed targets.
42ALL_DEFAULT_INSTALLED_MODULES:=
43
The Android Open Source Project88b60792009-03-03 19:28:42 -080044# 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.
48ALL_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.)
56ALL_MODULE_NAME_TAGS:=
57
58# Full paths to all prebuilt files that will be copied
59# (used to make the dependency on acp)
60ALL_PREBUILT:=
61
62# Full path to all files that are made by some tool
63ALL_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
67ALL_C_CPP_ETC_OBJECTS:=
68
Iliyan Malchevb375e712011-03-08 16:19:48 -080069# The list of dynamic binaries that haven't been stripped/compressed/etc.
The Android Open Source Project88b60792009-03-03 19:28:42 -080070ALL_ORIGINAL_DYNAMIC_BINARIES:=
71
72# These files go into the SDK
73ALL_SDK_FILES:=
74
75# Files for dalvik. This is often build without building the rest of the OS.
76INTERNAL_DALVIK_MODULES:=
77
78# All findbugs xml files
79ALL_FINDBUGS_FILES:=
80
81###########################################################
82## Debugging; prints a variable list to stdout
83###########################################################
84
85# $(1): variable name list, not variable values
86define print-vars
87$(foreach var,$(1), \
88 $(info $(var):) \
89 $(foreach word,$($(var)), \
90 $(info $(space)$(space)$(word)) \
91 ) \
92 )
93endef
94
95###########################################################
Joe Onorato64d85d02009-04-09 19:31:12 -070096## Evaluates to true if the string contains the word true,
97## and empty otherwise
98## $(1): a var to test
99###########################################################
100
101define true-or-empty
102$(filter true, $(1))
103endef
104
105
106###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -0800107## Retrieve the directory of the current makefile
108###########################################################
109
110# Figure out where we are.
111define my-dir
Dave Bortb3926412009-05-19 16:12:22 -0700112$(strip \
113 $(eval md_file_ := $$(lastword $$(MAKEFILE_LIST))) \
114 $(if $(filter $(CLEAR_VARS),$(md_file_)), \
115 $(error LOCAL_PATH must be set before including $$(CLEAR_VARS)) \
116 , \
117 $(patsubst %/,%,$(dir $(md_file_))) \
118 ) \
119 )
The Android Open Source Project88b60792009-03-03 19:28:42 -0800120endef
121
122###########################################################
123## Retrieve a list of all makefiles immediately below some directory
124###########################################################
125
126define all-makefiles-under
127$(wildcard $(1)/*/Android.mk)
128endef
129
130###########################################################
131## Look under a directory for makefiles that don't have parent
132## makefiles.
133###########################################################
134
135# $(1): directory to search under
136# Ignores $(1)/Android.mk
137define first-makefiles-under
Joe Onoratodc1a7282009-08-04 15:58:26 -0400138$(shell build/tools/findleaves.py --prune=out --prune=.repo --prune=.git \
139 --mindepth=2 $(1) Android.mk)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800140endef
141
142###########################################################
143## Retrieve a list of all makefiles immediately below your directory
144###########################################################
145
146define all-subdir-makefiles
147$(call all-makefiles-under,$(call my-dir))
148endef
149
150###########################################################
151## Look in the named list of directories for makefiles,
152## relative to the current directory.
153###########################################################
154
155# $(1): List of directories to look for under this directory
156define all-named-subdir-makefiles
Chih-Wei Huange73c4bb2011-01-16 18:31:29 +0800157$(wildcard $(addsuffix /Android.mk, $(addprefix $(call my-dir)/,$(1))))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800158endef
159
160###########################################################
161## Find all of the java files under the named directories.
162## Meant to be used like:
163## SRC_FILES := $(call all-java-files-under,src tests)
164###########################################################
165
166define all-java-files-under
167$(patsubst ./%,%, \
168 $(shell cd $(LOCAL_PATH) ; \
169 find $(1) -name "*.java" -and -not -name ".*") \
170 )
171endef
172
173###########################################################
174## Find all of the java files from here. Meant to be used like:
175## SRC_FILES := $(call all-subdir-java-files)
176###########################################################
177
178define all-subdir-java-files
179$(call all-java-files-under,.)
180endef
181
182###########################################################
183## Find all of the c files under the named directories.
184## Meant to be used like:
185## SRC_FILES := $(call all-c-files-under,src tests)
186###########################################################
187
188define all-c-files-under
189$(patsubst ./%,%, \
190 $(shell cd $(LOCAL_PATH) ; \
191 find $(1) -name "*.c" -and -not -name ".*") \
192 )
193endef
194
195###########################################################
196## Find all of the c files from here. Meant to be used like:
197## SRC_FILES := $(call all-subdir-c-files)
198###########################################################
199
200define all-subdir-c-files
201$(call all-c-files-under,.)
202endef
203
204###########################################################
205## Find all files named "I*.aidl" under the named directories,
206## which must be relative to $(LOCAL_PATH). The returned list
207## is relative to $(LOCAL_PATH).
208###########################################################
209
210define all-Iaidl-files-under
211$(patsubst ./%,%, \
212 $(shell cd $(LOCAL_PATH) ; \
213 find $(1) -name "I*.aidl" -and -not -name ".*") \
214 )
215endef
216
217###########################################################
218## Find all of the "I*.aidl" files under $(LOCAL_PATH).
219###########################################################
220
221define all-subdir-Iaidl-files
222$(call all-Iaidl-files-under,.)
223endef
224
225###########################################################
Bjorn Bringerta89c9902010-02-02 17:36:20 +0000226## Find all of the logtags files under the named directories.
227## Meant to be used like:
228## SRC_FILES := $(call all-logtags-files-under,src)
229###########################################################
230
231define all-logtags-files-under
232$(patsubst ./%,%, \
233 $(shell cd $(LOCAL_PATH) ; \
234 find $(1) -name "*.logtags" -and -not -name ".*") \
235 )
236endef
237
238###########################################################
Ying Wanga5fc87a2010-11-02 18:43:16 -0700239## Find all of the .proto files under the named directories.
240## Meant to be used like:
241## SRC_FILES := $(call all-proto-files-under,src)
242###########################################################
243
244define all-proto-files-under
245$(patsubst ./%,%, \
246 $(shell cd $(LOCAL_PATH) ; \
247 find $(1) -name "*.proto" -and -not -name ".*") \
248 )
249endef
250
251###########################################################
Ying Wang0bd59a02010-07-15 17:17:52 -0700252## Find all of the RenderScript files under the named directories.
253## Meant to be used like:
254## SRC_FILES := $(call all-renderscript-files-under,src)
255###########################################################
256
257define all-renderscript-files-under
258$(patsubst ./%,%, \
259 $(shell cd $(LOCAL_PATH) ; \
260 find $(1) -name "*.rs" -and -not -name ".*") \
261 )
262endef
263
264###########################################################
Jean-Baptiste Queru0a3cfdc2009-12-17 17:47:28 -0800265## Find all of the html files under the named directories.
266## Meant to be used like:
267## SRC_FILES := $(call all-html-files-under,src tests)
268###########################################################
269
270define all-html-files-under
271$(patsubst ./%,%, \
272 $(shell cd $(LOCAL_PATH) ; \
273 find $(1) -name "*.html" -and -not -name ".*") \
274 )
275endef
276
277###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -0800278## Find all of the html files from here. Meant to be used like:
279## SRC_FILES := $(call all-subdir-html-files)
280###########################################################
281
282define all-subdir-html-files
Jean-Baptiste Queru0a3cfdc2009-12-17 17:47:28 -0800283$(call all-html-files-under,.)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800284endef
285
286###########################################################
287## Find all of the files matching pattern
288## SRC_FILES := $(call find-subdir-files, <pattern>)
289###########################################################
290
291define find-subdir-files
292$(patsubst ./%,%,$(shell cd $(LOCAL_PATH) ; find $(1)))
293endef
294
295###########################################################
296# find the files in the subdirectory $1 of LOCAL_DIR
297# matching pattern $2, filtering out files $3
298# e.g.
299# SRC_FILES += $(call find-subdir-subdir-files, \
300# css, *.cpp, DontWantThis.cpp)
301###########################################################
302
303define find-subdir-subdir-files
304$(filter-out $(patsubst %,$(1)/%,$(3)),$(patsubst ./%,%,$(shell cd \
305 $(LOCAL_PATH) ; find $(1) -maxdepth 1 -name $(2))))
306endef
307
308###########################################################
309## Find all of the files matching pattern
310## SRC_FILES := $(call all-subdir-java-files)
311###########################################################
312
313define find-subdir-assets
314$(if $(1),$(patsubst ./%,%, \
Ying Wang6ab5d6a2011-08-10 16:05:51 -0700315 $(shell if [ -d $(1) ] ; then cd $(1) ; find ./ -not -name '.*' -and -type f -and -not -type l ; fi)), \
The Android Open Source Project88b60792009-03-03 19:28:42 -0800316 $(warning Empty argument supplied to find-subdir-assets) \
317)
318endef
319
320###########################################################
321## Find various file types in a list of directories relative to $(LOCAL_PATH)
322###########################################################
323
324define find-other-java-files
325 $(call find-subdir-files,$(1) -name "*.java" -and -not -name ".*")
326endef
327
328define find-other-html-files
329 $(call find-subdir-files,$(1) -name "*.html" -and -not -name ".*")
330endef
331
332###########################################################
333## Scan through each directory of $(1) looking for files
334## that match $(2) using $(wildcard). Useful for seeing if
335## a given directory or one of its parents contains
336## a particular file. Returns the first match found,
337## starting furthest from the root.
338###########################################################
339
340define find-parent-file
341$(strip \
Ying Wanga67ce692011-03-03 13:29:38 -0800342 $(eval _fpf := $(wildcard $(foreach f, $(2), $(strip $(1))/$(f)))) \
The Android Open Source Project88b60792009-03-03 19:28:42 -0800343 $(if $(_fpf),$(_fpf), \
344 $(if $(filter-out ./ .,$(1)), \
345 $(call find-parent-file,$(patsubst %/,%,$(dir $(1))),$(2)) \
346 ) \
347 ) \
348)
349endef
350
351###########################################################
352## Function we can evaluate to introduce a dynamic dependency
353###########################################################
354
355define add-dependency
356$(1): $(2)
357endef
358
359###########################################################
360## Set up the dependencies for a prebuilt target
361## $(call add-prebuilt-file, srcfile, [targetclass])
362###########################################################
363
364define add-prebuilt-file
365 $(eval $(include-prebuilt))
366endef
367
368define include-prebuilt
369 include $$(CLEAR_VARS)
370 LOCAL_SRC_FILES := $(1)
371 LOCAL_BUILT_MODULE_STEM := $(1)
372 LOCAL_MODULE_SUFFIX := $$(suffix $(1))
373 LOCAL_MODULE := $$(basename $(1))
374 LOCAL_MODULE_CLASS := $(2)
375 include $$(BUILD_PREBUILT)
376endef
377
378###########################################################
379## do multiple prebuilts
380## $(call target class, files ...)
381###########################################################
382
383define add-prebuilt-files
384 $(foreach f,$(2),$(call add-prebuilt-file,$f,$(1)))
385endef
386
387
388
389###########################################################
390## The intermediates directory. Where object files go for
391## a given target. We could technically get away without
392## the "_intermediates" suffix on the directory, but it's
393## nice to be able to grep for that string to find out if
394## anyone's abusing the system.
395###########################################################
396
397# $(1): target class, like "APPS"
398# $(2): target name, like "NotePad"
399# $(3): if non-empty, this is a HOST target.
400# $(4): if non-empty, force the intermediates to be COMMON
401define intermediates-dir-for
402$(strip \
403 $(eval _idfClass := $(strip $(1))) \
404 $(if $(_idfClass),, \
405 $(error $(LOCAL_PATH): Class not defined in call to intermediates-dir-for)) \
406 $(eval _idfName := $(strip $(2))) \
407 $(if $(_idfName),, \
408 $(error $(LOCAL_PATH): Name not defined in call to intermediates-dir-for)) \
409 $(eval _idfPrefix := $(if $(strip $(3)),HOST,TARGET)) \
Ying Wanga83940f2010-09-24 18:09:04 -0700410 $(if $(filter $(_idfPrefix)-$(_idfClass),$(COMMON_MODULE_CLASSES))$(4), \
The Android Open Source Project88b60792009-03-03 19:28:42 -0800411 $(eval _idfIntBase := $($(_idfPrefix)_OUT_COMMON_INTERMEDIATES)) \
412 , \
413 $(eval _idfIntBase := $($(_idfPrefix)_OUT_INTERMEDIATES)) \
414 ) \
415 $(_idfIntBase)/$(_idfClass)/$(_idfName)_intermediates \
416)
417endef
418
419# Uses LOCAL_MODULE_CLASS, LOCAL_MODULE, and LOCAL_IS_HOST_MODULE
420# to determine the intermediates directory.
421#
422# $(1): if non-empty, force the intermediates to be COMMON
423define local-intermediates-dir
424$(strip \
425 $(if $(strip $(LOCAL_MODULE_CLASS)),, \
426 $(error $(LOCAL_PATH): LOCAL_MODULE_CLASS not defined before call to local-intermediates-dir)) \
427 $(if $(strip $(LOCAL_MODULE)),, \
428 $(error $(LOCAL_PATH): LOCAL_MODULE not defined before call to local-intermediates-dir)) \
429 $(call intermediates-dir-for,$(LOCAL_MODULE_CLASS),$(LOCAL_MODULE),$(LOCAL_IS_HOST_MODULE),$(1)) \
430)
431endef
432
433###########################################################
434## Convert "path/to/libXXX.so" to "-lXXX".
435## Any "path/to/libXXX.a" elements pass through unchanged.
436###########################################################
437
438define normalize-libraries
439$(foreach so,$(filter %.so,$(1)),-l$(patsubst lib%.so,%,$(notdir $(so))))\
440$(filter-out %.so,$(1))
441endef
442
443# TODO: change users to call the common version.
444define normalize-host-libraries
445$(call normalize-libraries,$(1))
446endef
447
448define normalize-target-libraries
449$(call normalize-libraries,$(1))
450endef
451
452###########################################################
453## Convert a list of short module names (e.g., "framework", "Browser")
454## into the list of files that are built for those modules.
455## NOTE: this won't return reliable results until after all
456## sub-makefiles have been included.
457## $(1): target list
458###########################################################
459
460define module-built-files
461$(foreach module,$(1),$(ALL_MODULES.$(module).BUILT))
462endef
463
464###########################################################
465## Convert a list of short modules names (e.g., "framework", "Browser")
466## into the list of files that are installed for those modules.
467## NOTE: this won't return reliable results until after all
468## sub-makefiles have been included.
469## $(1): target list
470###########################################################
471
472define module-installed-files
473$(foreach module,$(1),$(ALL_MODULES.$(module).INSTALLED))
474endef
475
476###########################################################
Joe Onorato64d85d02009-04-09 19:31:12 -0700477## Convert a list of short modules names (e.g., "framework", "Browser")
478## into the list of files that should be used when linking
479## against that module as a public API.
480## TODO: Allow this for more than JAVA_LIBRARIES modules
481## NOTE: this won't return reliable results until after all
482## sub-makefiles have been included.
483## $(1): target list
484###########################################################
485
486define module-stubs-files
487$(foreach module,$(1),$(ALL_MODULES.$(module).STUBS))
488endef
489
490###########################################################
491## Evaluates to the timestamp file for a doc module, which
492## is the dependency that should be used.
493## $(1): doc module
494###########################################################
495
496define doc-timestamp-for
497$(OUT_DOCS)/$(strip $(1))-timestamp
498endef
499
500
501###########################################################
Ying Wang912f8282010-09-28 17:27:56 -0700502## Convert "core ext framework" to "out/.../javalib.jar ..."
The Android Open Source Project88b60792009-03-03 19:28:42 -0800503## $(1): library list
504## $(2): Non-empty if IS_HOST_MODULE
505###########################################################
506
507# $(1): library name
508# $(2): Non-empty if IS_HOST_MODULE
509define _java-lib-dir
510$(call intermediates-dir-for, \
Ying Wang912f8282010-09-28 17:27:56 -0700511 JAVA_LIBRARIES,$(1),$(2),COMMON)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800512endef
513
514# $(1): library name
515# $(2): Non-empty if IS_HOST_MODULE
516define _java-lib-full-classes.jar
Ying Wang912f8282010-09-28 17:27:56 -0700517$(call _java-lib-dir,$(1),$(2))/classes$(COMMON_JAVA_PACKAGE_SUFFIX)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800518endef
519
520# $(1): library name list
521# $(2): Non-empty if IS_HOST_MODULE
522define java-lib-files
523$(foreach lib,$(1),$(call _java-lib-full-classes.jar,$(lib),$(2)))
524endef
525
526# $(1): library name
The Android Open Source Project88b60792009-03-03 19:28:42 -0800527# $(2): Non-empty if IS_HOST_MODULE
528define _java-lib-full-dep
Ying Wang912f8282010-09-28 17:27:56 -0700529$(call _java-lib-dir,$(1),$(2))/javalib$(COMMON_JAVA_PACKAGE_SUFFIX)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800530endef
531
532# $(1): library name list
533# $(2): Non-empty if IS_HOST_MODULE
534define java-lib-deps
535$(foreach lib,$(1),$(call _java-lib-full-dep,$(lib),$(2)))
536endef
537
538###########################################################
Joe Onorato8dc8faa2010-09-14 13:09:48 -0400539## Run rot13 on a string
540## $(1): the string. Must be one line.
541###########################################################
542define rot13
543$(shell echo $(1) | tr 'a-zA-Z' 'n-za-mN-ZA-M')
544endef
545
546
547###########################################################
548## Returns true if $(1) and $(2) are equal. Returns
549## the empty string if they are not equal.
550###########################################################
551define streq
552$(strip $(if $(strip $(1)),\
553 $(if $(strip $(2)),\
554 $(if $(filter-out __,_$(subst $(strip $(1)),,$(strip $(2)))$(subst $(strip $(2)),,$(strip $(1)))_),,true), \
555 ),\
556 $(if $(strip $(2)),\
557 ,\
558 true)\
559 ))
560endef
561
562###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -0800563## Convert "a b c" into "a:b:c"
564###########################################################
565
566empty :=
567space := $(empty) $(empty)
568
569define normalize-path-list
570$(subst $(space),:,$(strip $(1)))
571endef
572
573###########################################################
Joe Onorato64d85d02009-04-09 19:31:12 -0700574## Read the word out of a colon-separated list of words.
575## This has the same behavior as the built-in function
576## $(word n,str).
577##
578## The individual words may not contain spaces.
579##
580## $(1): 1 based index
581## $(2): value of the form a:b:c...
582###########################################################
583
584define word-colon
585$(word $(1),$(subst :,$(space),$(2)))
586endef
587
588###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -0800589## Convert "a=b c= d e = f" into "a=b c=d e=f"
590##
591## $(1): list to collapse
592## $(2): if set, separator word; usually "=", ":", or ":="
593## Defaults to "=" if not set.
594###########################################################
595
596define collapse-pairs
597$(eval _cpSEP := $(strip $(if $(2),$(2),=)))\
598$(subst $(space)$(_cpSEP)$(space),$(_cpSEP),$(strip \
599 $(subst $(_cpSEP), $(_cpSEP) ,$(1))))
600endef
601
The Android Open Source Project88b60792009-03-03 19:28:42 -0800602###########################################################
Ying Wang7e8d4422011-06-17 17:05:35 -0700603## Given a list of pairs, if multiple pairs have the same
604## first components, keep only the first pair.
605##
606## $(1): list of pairs
607## $(2): the separator word, such as ":", "=", etc.
608define uniq-pairs-by-first-component
609$(eval _upbfc_fc_set :=)\
610$(strip $(foreach w,$(1), $(eval _first := $(word 1,$(subst $(2),$(space),$(w))))\
611 $(if $(filter $(_upbfc_fc_set),$(_first)),,$(w)\
612 $(eval _upbfc_fc_set += $(_first)))))\
613$(eval _upbfc_fc_set :=)\
614$(eval _first:=)
615endef
616
617###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -0800618## MODULE_TAG set operations
619###########################################################
620
621# Given a list of tags, return the targets that specify
622# any of those tags.
623# $(1): tag list
624define modules-for-tag-list
625$(sort $(foreach tag,$(1),$(ALL_MODULE_TAGS.$(tag))))
626endef
627
628# Same as modules-for-tag-list, but operates on
629# ALL_MODULE_NAME_TAGS.
630# $(1): tag list
631define module-names-for-tag-list
632$(sort $(foreach tag,$(1),$(ALL_MODULE_NAME_TAGS.$(tag))))
633endef
634
635# Given an accept and reject list, find the matching
636# set of targets. If a target has multiple tags and
637# any of them are rejected, the target is rejected.
638# Reject overrides accept.
639# $(1): list of tags to accept
640# $(2): list of tags to reject
641#TODO(dbort): do $(if $(strip $(1)),$(1),$(ALL_MODULE_TAGS))
Jean-Baptiste Queru75127b72010-01-07 11:44:22 -0800642#TODO(jbq): as of 20100106 nobody uses the second parameter
The Android Open Source Project88b60792009-03-03 19:28:42 -0800643define get-tagged-modules
644$(filter-out \
645 $(call modules-for-tag-list,$(2)), \
646 $(call modules-for-tag-list,$(1)))
647endef
648
Joe Onorato64d85d02009-04-09 19:31:12 -0700649###########################################################
650## Append a leaf to a base path. Properly deals with
651## base paths ending in /.
652##
653## $(1): base path
654## $(2): leaf path
655###########################################################
656
657define append-path
658$(subst //,/,$(1)/$(2))
659endef
660
The Android Open Source Project88b60792009-03-03 19:28:42 -0800661
662###########################################################
663## Package filtering
664###########################################################
665
666# Given a list of installed modules (short or long names)
667# return a list of the packages (yes, .apk packages, not
668# modules in general) that are overridden by this list and,
669# therefore, should not be installed.
670# $(1): mixed list of installed modules
671# TODO: This is fragile; find a reliable way to get this information.
672define _get-package-overrides
673 $(eval ### Discard any words containing slashes, unless they end in .apk, \
674 ### in which case trim off the directory component and the suffix. \
675 ### If there are no slashes, keep the entire word.)
676 $(eval _gpo_names := $(subst /,@@@ @@@,$(1)))
677 $(eval _gpo_names := \
678 $(filter %.apk,$(_gpo_names)) \
679 $(filter-out %@@@ @@@%,$(_gpo_names)))
680 $(eval _gpo_names := $(patsubst %.apk,%,$(_gpo_names)))
681 $(eval _gpo_names := $(patsubst @@@%,%,$(_gpo_names)))
682
683 $(eval ### Remove any remaining words that contain dots.)
684 $(eval _gpo_names := $(subst .,@@@ @@@,$(_gpo_names)))
685 $(eval _gpo_names := $(filter-out %@@@ @@@%,$(_gpo_names)))
686
687 $(eval ### Now we have a list of any words that could possibly refer to \
688 ### packages, although there may be words that do not. Only \
689 ### real packages will be present under PACKAGES.*, though.)
690 $(foreach _gpo_name,$(_gpo_names),$(PACKAGES.$(_gpo_name).OVERRIDES))
691endef
692
693define get-package-overrides
694$(strip $(sort $(call _get-package-overrides,$(1))))
695endef
696
697###########################################################
698## Output the command lines, or not
699###########################################################
700
701ifeq ($(strip $(SHOW_COMMANDS)),)
702define pretty
703@echo $1
704endef
705hide := @
706else
707define pretty
708endef
709hide :=
710endif
711
712###########################################################
713## Dump the variables that are associated with targets
714###########################################################
715
716define dump-module-variables
717@echo all_dependencies=$^
718@echo PRIVATE_YACCFLAGS=$(PRIVATE_YACCFLAGS);
719@echo PRIVATE_CFLAGS=$(PRIVATE_CFLAGS);
720@echo PRIVATE_CPPFLAGS=$(PRIVATE_CPPFLAGS);
721@echo PRIVATE_DEBUG_CFLAGS=$(PRIVATE_DEBUG_CFLAGS);
722@echo PRIVATE_C_INCLUDES=$(PRIVATE_C_INCLUDES);
723@echo PRIVATE_LDFLAGS=$(PRIVATE_LDFLAGS);
724@echo PRIVATE_LDLIBS=$(PRIVATE_LDLIBS);
725@echo PRIVATE_ARFLAGS=$(PRIVATE_ARFLAGS);
726@echo PRIVATE_AAPT_FLAGS=$(PRIVATE_AAPT_FLAGS);
727@echo PRIVATE_DX_FLAGS=$(PRIVATE_DX_FLAGS);
Brian Carlstromf184a0f2010-02-01 11:13:32 -0800728@echo PRIVATE_JAVACFLAGS=$(PRIVATE_JAVACFLAGS);
The Android Open Source Project88b60792009-03-03 19:28:42 -0800729@echo PRIVATE_JAVA_LIBRARIES=$(PRIVATE_JAVA_LIBRARIES);
730@echo PRIVATE_ALL_SHARED_LIBRARIES=$(PRIVATE_ALL_SHARED_LIBRARIES);
731@echo PRIVATE_ALL_STATIC_LIBRARIES=$(PRIVATE_ALL_STATIC_LIBRARIES);
732@echo PRIVATE_ALL_WHOLE_STATIC_LIBRARIES=$(PRIVATE_ALL_WHOLE_STATIC_LIBRARIES);
733@echo PRIVATE_ALL_OBJECTS=$(PRIVATE_ALL_OBJECTS);
Jeff Brown703e7c62011-02-04 20:15:00 -0800734@echo PRIVATE_NO_CRT=$(PRIVATE_NO_CRT);
The Android Open Source Project88b60792009-03-03 19:28:42 -0800735endef
736
737###########################################################
738## Commands for using sed to replace given variable values
739###########################################################
740
741define transform-variables
742@mkdir -p $(dir $@)
743@echo "Sed: $(if $(PRIVATE_MODULE),$(PRIVATE_MODULE),$@) <= $<"
744$(hide) sed $(foreach var,$(REPLACE_VARS),-e "s/{{$(var)}}/$(subst /,\/,$(PWD)/$($(var)))/g") $< >$@
745$(hide) if [ "$(suffix $@)" = ".sh" ]; then chmod a+rx $@; fi
746endef
747
748
749###########################################################
750## Commands for munging the dependency files GCC generates
751###########################################################
752
753define transform-d-to-p
Ying Wang3a7e4cc2011-01-28 14:14:47 -0800754$(hide) cp $(@:%.o=%.d) $(@:%.o=%.P); \
The Android Open Source Project88b60792009-03-03 19:28:42 -0800755 sed -e 's/#.*//' -e 's/^[^:]*: *//' -e 's/ *\\$$//' \
756 -e '/^$$/ d' -e 's/$$/ :/' < $(@:%.o=%.d) >> $(@:%.o=%.P); \
757 rm -f $(@:%.o=%.d)
758endef
759
760###########################################################
761## Commands for running lex
762###########################################################
763
764define transform-l-to-cpp
765@mkdir -p $(dir $@)
766@echo "Lex: $(PRIVATE_MODULE) <= $<"
767$(hide) $(LEX) -o$@ $<
768endef
769
770###########################################################
771## Commands for running yacc
772##
773## Because the extension of c++ files can change, the
774## extension must be specified in $1.
775## E.g, "$(call transform-y-to-cpp,.cpp)"
776###########################################################
777
778define transform-y-to-cpp
779@mkdir -p $(dir $@)
780@echo "Yacc: $(PRIVATE_MODULE) <= $<"
781$(YACC) $(PRIVATE_YACCFLAGS) -o $@ $<
782touch $(@:$1=$(YACC_HEADER_SUFFIX))
783echo '#ifndef '$(@F:$1=_h) > $(@:$1=.h)
784echo '#define '$(@F:$1=_h) >> $(@:$1=.h)
785cat $(@:$1=$(YACC_HEADER_SUFFIX)) >> $(@:$1=.h)
786echo '#endif' >> $(@:$1=.h)
787rm -f $(@:$1=$(YACC_HEADER_SUFFIX))
788endef
789
Ying Wang0bd59a02010-07-15 17:17:52 -0700790###########################################################
791## Commands to compile RenderScript
792###########################################################
Ying Wang0bd59a02010-07-15 17:17:52 -0700793
794define transform-renderscripts-to-java-and-bc
795@echo "RenderScript: $(PRIVATE_MODULE) <= $(PRIVATE_RS_SOURCE_FILES)"
796$(hide) rm -rf $(PRIVATE_RS_OUTPUT_DIR)
797$(hide) mkdir -p $(PRIVATE_RS_OUTPUT_DIR)/res/raw
798$(hide) mkdir -p $(PRIVATE_RS_OUTPUT_DIR)/src
Ying Wang7d83ef82011-05-25 17:16:22 -0700799$(hide) $(PRIVATE_RS_CC) \
Ying Wangebfddaa2010-07-30 18:37:29 -0700800 -o $(PRIVATE_RS_OUTPUT_DIR)/res/raw \
801 -p $(PRIVATE_RS_OUTPUT_DIR)/src \
Ying Wang24e1c012010-10-07 18:57:57 -0700802 -d $(PRIVATE_RS_OUTPUT_DIR) \
803 -a $@ -MD \
Stephen Hinesc963eae2011-08-10 13:53:05 -0700804 $(addprefix -target-api , $(PRIVATE_RS_TARGET_API)) \
Ying Wang51280272010-09-01 13:28:52 -0700805 $(foreach inc,$(PRIVATE_RS_INCLUDES),$(addprefix -I , $(inc))) \
Ying Wangebfddaa2010-07-30 18:37:29 -0700806 $(PRIVATE_RS_SOURCE_FILES)
Shih-wei Liaoc6560302010-10-23 03:07:13 -0700807#$(hide) $(LLVM_RS_LINK) \
808# $(PRIVATE_RS_OUTPUT_DIR)/res/raw/*.bc
Ying Wang0bd59a02010-07-15 17:17:52 -0700809$(hide) mkdir -p $(dir $@)
810$(hide) touch $@
811endef
812
The Android Open Source Project88b60792009-03-03 19:28:42 -0800813
814###########################################################
815## Commands for running aidl
816###########################################################
817
818define transform-aidl-to-java
819@mkdir -p $(dir $@)
820@echo "Aidl: $(PRIVATE_MODULE) <= $<"
821$(hide) $(AIDL) -d$(patsubst %.java,%.P,$@) $(PRIVATE_AIDL_FLAGS) $< $@
822endef
823#$(AIDL) $(PRIVATE_AIDL_FLAGS) $< - | indent -nut -br -npcs -l1000 > $@
824
825
Doug Zongker9bd49622009-11-30 14:28:59 -0800826###########################################################
827## Commands for running java-event-log-tags.py
828###########################################################
829
830define transform-logtags-to-java
831@mkdir -p $(dir $@)
832@echo "logtags: $@ <= $<"
Doug Zongkerabfbbe22010-02-16 14:32:08 -0800833$(hide) $(JAVATAGS) -o $@ $^
Doug Zongker9bd49622009-11-30 14:28:59 -0800834endef
835
The Android Open Source Project88b60792009-03-03 19:28:42 -0800836
837###########################################################
Ying Wanga5fc87a2010-11-02 18:43:16 -0700838## Commands for running protoc to compile .proto into .java
839###########################################################
840
841define transform-proto-to-java
842@mkdir -p $(dir $@)
843@echo "Protoc: $@ <= $(PRIVATE_PROTO_SRC_FILES)"
844@rm -rf $(PRIVATE_PROTO_JAVA_OUTPUT_DIR)
845@mkdir -p $(PRIVATE_PROTO_JAVA_OUTPUT_DIR)
846$(hide) $(PROTOC) \
847 $(addprefix --proto_path=, $(PRIVATE_PROTO_INCLUDES)) \
848 $(PRIVATE_PROTO_JAVA_OUTPUT_OPTION)=$(PRIVATE_PROTO_JAVA_OUTPUT_DIR) \
Ying Wang33c0d952010-11-05 11:30:58 -0700849 $(PRIVATE_PROTOC_FLAGS) \
Ying Wanga5fc87a2010-11-02 18:43:16 -0700850 $(PRIVATE_PROTO_SRC_FILES)
851$(hide) touch $@
852endef
853
854######################################################################
855## Commands for running protoc to compile .proto into .pb.cc and .pb.h
856######################################################################
857define transform-proto-to-cc
858@mkdir -p $(dir $@)
859@echo "Protoc: $@ <= $<"
860$(hide) $(PROTOC) \
861 $(addprefix --proto_path=, $(PRIVATE_PROTO_INCLUDES)) \
Ying Wang33c0d952010-11-05 11:30:58 -0700862 $(PRIVATE_PROTOC_FLAGS) \
Ying Wanga5fc87a2010-11-02 18:43:16 -0700863 --cpp_out=$(PRIVATE_PROTO_CC_OUTPUT_DIR) $<
864endef
865
866
867###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -0800868## Commands for running gcc to compile a C++ file
869###########################################################
870
871define transform-cpp-to-o
872@mkdir -p $(dir $@)
873@echo "target $(PRIVATE_ARM_MODE) C++: $(PRIVATE_MODULE) <= $<"
874$(hide) $(PRIVATE_CXX) \
Ying Wangddbcad82011-04-18 11:45:44 -0700875 $(addprefix -I , $(PRIVATE_C_INCLUDES)) \
Ying Wang4761e562011-04-12 11:06:35 -0700876 $(addprefix -isystem ,\
877 $(if $(PRIVATE_NO_DEFAULT_COMPILER_FLAGS),, \
878 $(filter-out $(PRIVATE_C_INCLUDES), \
Ying Wangddbcad82011-04-18 11:45:44 -0700879 $(PRIVATE_TARGET_PROJECT_INCLUDES) \
Ying Wang4761e562011-04-12 11:06:35 -0700880 $(PRIVATE_TARGET_C_INCLUDES)))) \
The Android Open Source Project88b60792009-03-03 19:28:42 -0800881 -c \
882 $(if $(PRIVATE_NO_DEFAULT_COMPILER_FLAGS),, \
Ying Wang1a081002010-07-13 14:55:47 -0700883 $(PRIVATE_TARGET_GLOBAL_CFLAGS) \
884 $(PRIVATE_TARGET_GLOBAL_CPPFLAGS) \
The Android Open Source Project88b60792009-03-03 19:28:42 -0800885 $(PRIVATE_ARM_CFLAGS) \
886 ) \
Doug Kwan9a8ecf92011-05-10 21:50:58 -0700887 $(PRIVATE_RTTI_FLAG) \
The Android Open Source Project88b60792009-03-03 19:28:42 -0800888 $(PRIVATE_CFLAGS) \
889 $(PRIVATE_CPPFLAGS) \
890 $(PRIVATE_DEBUG_CFLAGS) \
891 -MD -o $@ $<
Ying Wang3a7e4cc2011-01-28 14:14:47 -0800892$(transform-d-to-p)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800893endef
894
895
896###########################################################
897## Commands for running gcc to compile a C file
898###########################################################
899
900# $(1): extra flags
901define transform-c-or-s-to-o-no-deps
902@mkdir -p $(dir $@)
903$(hide) $(PRIVATE_CC) \
Ying Wangddbcad82011-04-18 11:45:44 -0700904 $(addprefix -I , $(PRIVATE_C_INCLUDES)) \
Ying Wang4761e562011-04-12 11:06:35 -0700905 $(addprefix -isystem ,\
906 $(if $(PRIVATE_NO_DEFAULT_COMPILER_FLAGS),, \
907 $(filter-out $(PRIVATE_C_INCLUDES), \
Ying Wangddbcad82011-04-18 11:45:44 -0700908 $(PRIVATE_TARGET_PROJECT_INCLUDES) \
Ying Wang4761e562011-04-12 11:06:35 -0700909 $(PRIVATE_TARGET_C_INCLUDES)))) \
The Android Open Source Project88b60792009-03-03 19:28:42 -0800910 -c \
911 $(if $(PRIVATE_NO_DEFAULT_COMPILER_FLAGS),, \
Ying Wang1a081002010-07-13 14:55:47 -0700912 $(PRIVATE_TARGET_GLOBAL_CFLAGS) \
The Android Open Source Project88b60792009-03-03 19:28:42 -0800913 $(PRIVATE_ARM_CFLAGS) \
914 ) \
915 $(PRIVATE_CFLAGS) \
916 $(1) \
917 $(PRIVATE_DEBUG_CFLAGS) \
918 -MD -o $@ $<
919endef
920
921define transform-c-to-o-no-deps
922@echo "target $(PRIVATE_ARM_MODE) C: $(PRIVATE_MODULE) <= $<"
923$(call transform-c-or-s-to-o-no-deps, )
924endef
925
926define transform-s-to-o-no-deps
927@echo "target asm: $(PRIVATE_MODULE) <= $<"
928$(call transform-c-or-s-to-o-no-deps, $(PRIVATE_ASFLAGS))
929endef
930
931define transform-c-to-o
932$(transform-c-to-o-no-deps)
Ying Wang3a7e4cc2011-01-28 14:14:47 -0800933$(transform-d-to-p)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800934endef
935
936define transform-s-to-o
937$(transform-s-to-o-no-deps)
Ying Wang3a7e4cc2011-01-28 14:14:47 -0800938$(transform-d-to-p)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800939endef
940
941###########################################################
David 'Digit' Turner5dbb5292009-05-14 16:00:09 +0200942## Commands for running gcc to compile an Objective-C file
943## This should never happen for target builds but this
944## will error at build time.
945###########################################################
946
947define transform-m-to-o-no-deps
948@echo "target ObjC: $(PRIVATE_MODULE) <= $<"
949$(call transform-c-or-s-to-o-no-deps)
950endef
951
952define transform-m-to-o
953$(transform-m-to-o-no-deps)
Ying Wang3a7e4cc2011-01-28 14:14:47 -0800954$(transform-d-to-p)
David 'Digit' Turner5dbb5292009-05-14 16:00:09 +0200955endef
956
957###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -0800958## Commands for running gcc to compile a host C++ file
959###########################################################
960
961define transform-host-cpp-to-o
962@mkdir -p $(dir $@)
963@echo "host C++: $(PRIVATE_MODULE) <= $<"
964$(hide) $(PRIVATE_CXX) \
Ying Wangddbcad82011-04-18 11:45:44 -0700965 $(addprefix -I , $(PRIVATE_C_INCLUDES)) \
966 $(addprefix -isystem ,\
The Android Open Source Project88b60792009-03-03 19:28:42 -0800967 $(if $(PRIVATE_NO_DEFAULT_COMPILER_FLAGS),, \
Ying Wangddbcad82011-04-18 11:45:44 -0700968 $(filter-out $(PRIVATE_C_INCLUDES), \
969 $(HOST_PROJECT_INCLUDES) \
970 $(HOST_C_INCLUDES)))) \
The Android Open Source Project88b60792009-03-03 19:28:42 -0800971 -c \
972 $(if $(PRIVATE_NO_DEFAULT_COMPILER_FLAGS),, \
973 $(HOST_GLOBAL_CFLAGS) \
974 $(HOST_GLOBAL_CPPFLAGS) \
975 ) \
976 $(PRIVATE_CFLAGS) \
977 $(PRIVATE_CPPFLAGS) \
978 $(PRIVATE_DEBUG_CFLAGS) \
979 -MD -o $@ $<
980$(transform-d-to-p)
981endef
982
983
984###########################################################
985## Commands for running gcc to compile a host C file
986###########################################################
987
988# $(1): extra flags
989define transform-host-c-or-s-to-o-no-deps
990@mkdir -p $(dir $@)
991$(hide) $(PRIVATE_CC) \
Ying Wangddbcad82011-04-18 11:45:44 -0700992 $(addprefix -I , $(PRIVATE_C_INCLUDES)) \
993 $(addprefix -isystem ,\
The Android Open Source Project88b60792009-03-03 19:28:42 -0800994 $(if $(PRIVATE_NO_DEFAULT_COMPILER_FLAGS),, \
Ying Wangddbcad82011-04-18 11:45:44 -0700995 $(filter-out $(PRIVATE_C_INCLUDES), \
996 $(HOST_PROJECT_INCLUDES) \
997 $(HOST_C_INCLUDES)))) \
The Android Open Source Project88b60792009-03-03 19:28:42 -0800998 -c \
999 $(if $(PRIVATE_NO_DEFAULT_COMPILER_FLAGS),, \
1000 $(HOST_GLOBAL_CFLAGS) \
1001 ) \
1002 $(PRIVATE_CFLAGS) \
1003 $(1) \
1004 $(PRIVATE_DEBUG_CFLAGS) \
1005 -MD -o $@ $<
1006endef
1007
1008define transform-host-c-to-o-no-deps
1009@echo "host C: $(PRIVATE_MODULE) <= $<"
1010$(call transform-host-c-or-s-to-o-no-deps, )
1011endef
1012
1013define transform-host-s-to-o-no-deps
1014@echo "host asm: $(PRIVATE_MODULE) <= $<"
1015$(call transform-host-c-or-s-to-o-no-deps, $(PRIVATE_ASFLAGS))
1016endef
1017
1018define transform-host-c-to-o
1019$(transform-host-c-to-o-no-deps)
1020$(transform-d-to-p)
1021endef
1022
1023define transform-host-s-to-o
1024$(transform-host-s-to-o-no-deps)
1025$(transform-d-to-p)
1026endef
1027
1028###########################################################
David 'Digit' Turner5dbb5292009-05-14 16:00:09 +02001029## Commands for running gcc to compile a host Objective-C file
1030###########################################################
1031
1032define transform-host-m-to-o-no-deps
1033@echo "host ObjC: $(PRIVATE_MODULE) <= $<"
1034$(call transform-host-c-or-s-to-o-no-deps)
1035endef
1036
David 'Digit' Turner5ca286d2011-02-11 16:19:31 +01001037define transform-host-m-to-o
David 'Digit' Turner5dbb5292009-05-14 16:00:09 +02001038$(transform-host-m-to-o-no-deps)
1039$(transform-d-to-p)
1040endef
1041
1042###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -08001043## Commands for running ar
1044###########################################################
1045
Ying Wange4b24eb2010-05-27 11:55:39 -07001046define _concat-if-arg2-not-empty
1047$(if $(2),$(hide) $(1) $(2))
1048endef
1049
1050# Split long argument list into smaller groups and call the command repeatedly
1051#
1052# $(1): the command without arguments
1053# $(2): the arguments
1054define split-long-arguments
1055$(call _concat-if-arg2-not-empty,$(1),$(wordlist 1,500,$(2)))
1056$(call _concat-if-arg2-not-empty,$(1),$(wordlist 501,1000,$(2)))
1057$(call _concat-if-arg2-not-empty,$(1),$(wordlist 1001,1500,$(2)))
1058$(call _concat-if-arg2-not-empty,$(1),$(wordlist 1501,2000,$(2)))
1059$(call _concat-if-arg2-not-empty,$(1),$(wordlist 2001,2500,$(2)))
1060$(call _concat-if-arg2-not-empty,$(1),$(wordlist 2501,3000,$(2)))
1061$(call _concat-if-arg2-not-empty,$(1),$(wordlist 3001,99999,$(2)))
1062endef
1063
Ying Wanga02d3d92011-01-27 18:48:00 -08001064# $(1): the full path of the source static library.
1065define _extract-and-include-single-target-whole-static-lib
1066@echo "preparing StaticLib: $(PRIVATE_MODULE) [including $(1)]"
1067$(hide) ldir=$(PRIVATE_INTERMEDIATES_DIR)/WHOLE/$(basename $(notdir $(1)))_objs;\
1068 rm -rf $$ldir; \
1069 mkdir -p $$ldir; \
1070 filelist=; \
1071 for f in `$(TARGET_AR) t $(1)`; do \
1072 $(TARGET_AR) p $(1) $$f > $$ldir/$$f; \
1073 filelist="$$filelist $$ldir/$$f"; \
1074 done ; \
1075 $(TARGET_AR) $(TARGET_GLOBAL_ARFLAGS) $(PRIVATE_ARFLAGS) $@ $$filelist
1076
1077endef
1078
Dan Bornstein3d02eac2009-10-21 11:12:56 -07001079define extract-and-include-target-whole-static-libs
Dima Zavin46e9bec2009-05-27 19:41:07 -07001080$(foreach lib,$(PRIVATE_ALL_WHOLE_STATIC_LIBRARIES), \
Ying Wanga02d3d92011-01-27 18:48:00 -08001081 $(call _extract-and-include-single-target-whole-static-lib, $(lib)))
Dima Zavin46e9bec2009-05-27 19:41:07 -07001082endef
1083
The Android Open Source Project88b60792009-03-03 19:28:42 -08001084# Explicitly delete the archive first so that ar doesn't
1085# try to add to an existing archive.
1086define transform-o-to-static-lib
1087@mkdir -p $(dir $@)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001088@rm -f $@
Dan Bornstein3d02eac2009-10-21 11:12:56 -07001089$(extract-and-include-target-whole-static-libs)
Dima Zavin46e9bec2009-05-27 19:41:07 -07001090@echo "target StaticLib: $(PRIVATE_MODULE) ($@)"
Ying Wange4b24eb2010-05-27 11:55:39 -07001091$(call split-long-arguments,$(TARGET_AR) $(TARGET_GLOBAL_ARFLAGS) $(PRIVATE_ARFLAGS) $@,$(filter %.o, $^))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001092endef
1093
1094###########################################################
1095## Commands for running host ar
1096###########################################################
1097
Ying Wanga02d3d92011-01-27 18:48:00 -08001098# $(1): the full path of the source static library.
1099define _extract-and-include-single-host-whole-static-lib
1100@echo "preparing StaticLib: $(PRIVATE_MODULE) [including $(1)]"
1101$(hide) ldir=$(PRIVATE_INTERMEDIATES_DIR)/WHOLE/$(basename $(notdir $(1)))_objs;\
1102 rm -rf $$ldir; \
1103 mkdir -p $$ldir; \
1104 filelist=; \
1105 for f in `$(HOST_AR) t $(1) | grep '\.o$$'`; do \
1106 $(HOST_AR) p $(1) $$f > $$ldir/$$f; \
1107 filelist="$$filelist $$ldir/$$f"; \
1108 done ; \
1109 $(HOST_AR) $(HOST_GLOBAL_ARFLAGS) $(PRIVATE_ARFLAGS) $@ $$filelist
1110
1111endef
1112
Dan Bornstein3d02eac2009-10-21 11:12:56 -07001113define extract-and-include-host-whole-static-libs
1114$(foreach lib,$(PRIVATE_ALL_WHOLE_STATIC_LIBRARIES), \
Ying Wanga02d3d92011-01-27 18:48:00 -08001115 $(call _extract-and-include-single-host-whole-static-lib, $(lib)))
Dan Bornstein3d02eac2009-10-21 11:12:56 -07001116endef
1117
The Android Open Source Project88b60792009-03-03 19:28:42 -08001118# Explicitly delete the archive first so that ar doesn't
1119# try to add to an existing archive.
1120define transform-host-o-to-static-lib
1121@mkdir -p $(dir $@)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001122@rm -f $@
Dan Bornstein3d02eac2009-10-21 11:12:56 -07001123$(extract-and-include-host-whole-static-libs)
Dan Bornstein6bffc912009-10-15 13:01:36 -07001124@echo "host StaticLib: $(PRIVATE_MODULE) ($@)"
Ying Wange4b24eb2010-05-27 11:55:39 -07001125$(call split-long-arguments,$(HOST_AR) $(HOST_GLOBAL_ARFLAGS) $(PRIVATE_ARFLAGS) $@,$(filter %.o, $^))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001126endef
1127
1128
1129###########################################################
1130## Commands for running gcc to link a shared library or package
1131###########################################################
1132
1133# ld just seems to be so finicky with command order that we allow
1134# it to be overriden en-masse see combo/linux-arm.make for an example.
1135ifneq ($(HOST_CUSTOM_LD_COMMAND),true)
1136define transform-host-o-to-shared-lib-inner
Ying Wang3a7e4cc2011-01-28 14:14:47 -08001137$(hide) $(PRIVATE_CXX) \
Ying Wang80e6cce2011-01-24 23:25:36 -08001138 -Wl,-rpath-link=$(HOST_OUT_INTERMEDIATE_LIBRARIES) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001139 -Wl,-rpath,\$$ORIGIN/../lib \
1140 -shared -Wl,-soname,$(notdir $@) \
1141 $(PRIVATE_LDFLAGS) \
1142 $(HOST_GLOBAL_LD_DIRS) \
1143 $(if $(PRIVATE_NO_DEFAULT_COMPILER_FLAGS),, \
1144 $(HOST_GLOBAL_LDFLAGS) \
1145 ) \
1146 $(PRIVATE_ALL_OBJECTS) \
1147 -Wl,--whole-archive \
1148 $(call normalize-host-libraries,$(PRIVATE_ALL_WHOLE_STATIC_LIBRARIES)) \
1149 -Wl,--no-whole-archive \
Ying Wangfcdabd42011-04-25 14:22:41 -07001150 $(if $(PRIVATE_GROUP_STATIC_LIBRARIES),-Wl$(comma)--start-group) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001151 $(call normalize-host-libraries,$(PRIVATE_ALL_STATIC_LIBRARIES)) \
Ying Wangfcdabd42011-04-25 14:22:41 -07001152 $(if $(PRIVATE_GROUP_STATIC_LIBRARIES),-Wl$(comma)--end-group) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001153 $(call normalize-host-libraries,$(PRIVATE_ALL_SHARED_LIBRARIES)) \
1154 -o $@ \
1155 $(PRIVATE_LDLIBS)
1156endef
1157endif
1158
1159define transform-host-o-to-shared-lib
1160@mkdir -p $(dir $@)
1161@echo "host SharedLib: $(PRIVATE_MODULE) ($@)"
Ying Wang3a7e4cc2011-01-28 14:14:47 -08001162$(transform-host-o-to-shared-lib-inner)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001163endef
1164
1165define transform-host-o-to-package
1166@mkdir -p $(dir $@)
1167@echo "host Package: $(PRIVATE_MODULE) ($@)"
Ying Wang3a7e4cc2011-01-28 14:14:47 -08001168$(transform-host-o-to-shared-lib-inner)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001169endef
1170
1171
1172###########################################################
1173## Commands for running gcc to link a shared library or package
1174###########################################################
1175
1176#echo >$@.vers "{"; \
1177#echo >>$@.vers " global:"; \
1178#$(BUILD_SYSTEM)/filter_symbols.sh $(TARGET_NM) " " ";" $(filter %.o,$^) | sort -u >>$@.vers; \
1179#echo >>$@.vers " local:"; \
1180#echo >>$@.vers " *;"; \
1181#echo >>$@.vers "};"; \
1182
1183# -Wl,--version-script=$@.vers \
1184
1185# ld just seems to be so finicky with command order that we allow
1186# it to be overriden en-masse see combo/linux-arm.make for an example.
1187ifneq ($(TARGET_CUSTOM_LD_COMMAND),true)
1188define transform-o-to-shared-lib-inner
Ying Wang3a7e4cc2011-01-28 14:14:47 -08001189$(hide) $(PRIVATE_CXX) \
Ying Wang1a081002010-07-13 14:55:47 -07001190 $(PRIVATE_TARGET_GLOBAL_LDFLAGS) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001191 -Wl,-rpath-link=$(TARGET_OUT_INTERMEDIATE_LIBRARIES) \
1192 -Wl,-rpath,\$$ORIGIN/../lib \
1193 -shared -Wl,-soname,$(notdir $@) \
1194 $(PRIVATE_LDFLAGS) \
Ying Wang1a081002010-07-13 14:55:47 -07001195 $(PRIVATE_TARGET_GLOBAL_LD_DIRS) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001196 $(PRIVATE_ALL_OBJECTS) \
1197 -Wl,--whole-archive \
Ying Wang80e6cce2011-01-24 23:25:36 -08001198 $(call normalize-target-libraries,$(PRIVATE_ALL_WHOLE_STATIC_LIBRARIES)) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001199 -Wl,--no-whole-archive \
Ying Wangfcdabd42011-04-25 14:22:41 -07001200 $(if $(PRIVATE_GROUP_STATIC_LIBRARIES),-Wl$(comma)--start-group) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001201 $(call normalize-target-libraries,$(PRIVATE_ALL_STATIC_LIBRARIES)) \
Ying Wangfcdabd42011-04-25 14:22:41 -07001202 $(if $(PRIVATE_GROUP_STATIC_LIBRARIES),-Wl$(comma)--end-group) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001203 $(call normalize-target-libraries,$(PRIVATE_ALL_SHARED_LIBRARIES)) \
1204 -o $@ \
1205 $(PRIVATE_LDLIBS)
1206endef
1207endif
1208
1209define transform-o-to-shared-lib
1210@mkdir -p $(dir $@)
1211@echo "target SharedLib: $(PRIVATE_MODULE) ($@)"
Ying Wang3a7e4cc2011-01-28 14:14:47 -08001212$(transform-o-to-shared-lib-inner)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001213endef
1214
1215define transform-o-to-package
1216@mkdir -p $(dir $@)
1217@echo "target Package: $(PRIVATE_MODULE) ($@)"
Ying Wang3a7e4cc2011-01-28 14:14:47 -08001218$(transform-o-to-shared-lib-inner)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001219endef
1220
1221
1222###########################################################
1223## Commands for filtering a target executable or library
1224###########################################################
1225
The Android Open Source Project88b60792009-03-03 19:28:42 -08001226define transform-to-stripped
1227@mkdir -p $(dir $@)
1228@echo "target Strip: $(PRIVATE_MODULE) ($@)"
Bruce Beare45ac4342010-06-24 14:02:00 -07001229$(hide) $(TARGET_STRIP_COMMAND)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001230endef
1231
The Android Open Source Project88b60792009-03-03 19:28:42 -08001232
1233###########################################################
1234## Commands for running gcc to link an executable
1235###########################################################
1236
1237ifneq ($(TARGET_CUSTOM_LD_COMMAND),true)
1238define transform-o-to-executable-inner
Ying Wang3a7e4cc2011-01-28 14:14:47 -08001239$(hide) $(PRIVATE_CXX) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001240 $(TARGET_GLOBAL_LDFLAGS) \
1241 -Wl,-rpath-link=$(TARGET_OUT_INTERMEDIATE_LIBRARIES) \
1242 $(TARGET_GLOBAL_LD_DIRS) \
1243 -Wl,-rpath-link=$(TARGET_OUT_INTERMEDIATE_LIBRARIES) \
1244 -Wl,-rpath,\$$ORIGIN/../lib \
1245 $(PRIVATE_LDFLAGS) \
1246 $(TARGET_GLOBAL_LD_DIRS) \
1247 $(PRIVATE_ALL_OBJECTS) \
1248 -Wl,--whole-archive \
1249 $(call normalize-target-libraries,$(PRIVATE_ALL_WHOLE_STATIC_LIBRARIES)) \
1250 -Wl,--no-whole-archive \
Ying Wangfcdabd42011-04-25 14:22:41 -07001251 $(if $(PRIVATE_GROUP_STATIC_LIBRARIES),-Wl$(comma)--start-group) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001252 $(call normalize-target-libraries,$(PRIVATE_ALL_STATIC_LIBRARIES)) \
Ying Wangfcdabd42011-04-25 14:22:41 -07001253 $(if $(PRIVATE_GROUP_STATIC_LIBRARIES),-Wl$(comma)--end-group) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001254 $(call normalize-target-libraries,$(PRIVATE_ALL_SHARED_LIBRARIES)) \
1255 -o $@ \
1256 $(PRIVATE_LDLIBS)
1257endef
1258endif
1259
1260define transform-o-to-executable
1261@mkdir -p $(dir $@)
1262@echo "target Executable: $(PRIVATE_MODULE) ($@)"
Ying Wang3a7e4cc2011-01-28 14:14:47 -08001263$(transform-o-to-executable-inner)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001264endef
1265
1266
1267###########################################################
1268## Commands for running gcc to link a statically linked
1269## executable. In practice, we only use this on arm, so
1270## the other platforms don't have the
1271## transform-o-to-static-executable defined
1272###########################################################
1273
1274ifneq ($(TARGET_CUSTOM_LD_COMMAND),true)
1275define transform-o-to-static-executable-inner
1276endef
1277endif
1278
1279define transform-o-to-static-executable
1280@mkdir -p $(dir $@)
1281@echo "target StaticExecutable: $(PRIVATE_MODULE) ($@)"
Ying Wang3a7e4cc2011-01-28 14:14:47 -08001282$(transform-o-to-static-executable-inner)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001283endef
1284
1285
1286###########################################################
1287## Commands for running gcc to link a host executable
1288###########################################################
1289
1290ifneq ($(HOST_CUSTOM_LD_COMMAND),true)
1291define transform-host-o-to-executable-inner
Ying Wang3a7e4cc2011-01-28 14:14:47 -08001292$(hide) $(PRIVATE_CXX) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001293 $(PRIVATE_ALL_OBJECTS) \
1294 -Wl,--whole-archive \
1295 $(call normalize-host-libraries,$(PRIVATE_ALL_WHOLE_STATIC_LIBRARIES)) \
1296 -Wl,--no-whole-archive \
Ying Wangfcdabd42011-04-25 14:22:41 -07001297 $(if $(PRIVATE_GROUP_STATIC_LIBRARIES),-Wl$(comma)--start-group) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001298 $(call normalize-host-libraries,$(PRIVATE_ALL_STATIC_LIBRARIES)) \
Ying Wangfcdabd42011-04-25 14:22:41 -07001299 $(if $(PRIVATE_GROUP_STATIC_LIBRARIES),-Wl$(comma)--end-group) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001300 $(call normalize-host-libraries,$(PRIVATE_ALL_SHARED_LIBRARIES)) \
Conley Owense915ab42011-11-10 09:57:40 -08001301 -Wl,-rpath-link=$(HOST_OUT_INTERMEDIATE_LIBRARIES) \
1302 -Wl,-rpath,\$$ORIGIN/../lib \
1303 $(HOST_GLOBAL_LD_DIRS) \
1304 $(PRIVATE_LDFLAGS) \
1305 $(if $(PRIVATE_NO_DEFAULT_COMPILER_FLAGS),, \
1306 $(HOST_GLOBAL_LDFLAGS) \
1307 ) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001308 -o $@ \
1309 $(PRIVATE_LDLIBS)
1310endef
1311endif
1312
1313define transform-host-o-to-executable
1314@mkdir -p $(dir $@)
1315@echo "host Executable: $(PRIVATE_MODULE) ($@)"
Ying Wang3a7e4cc2011-01-28 14:14:47 -08001316$(transform-host-o-to-executable-inner)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001317endef
1318
1319
1320###########################################################
1321## Commands for running javac to make .class files
1322###########################################################
1323
1324#@echo "Source intermediates dir: $(PRIVATE_SOURCE_INTERMEDIATES_DIR)"
1325#@echo "Source intermediates: $$(find $(PRIVATE_SOURCE_INTERMEDIATES_DIR) -name '*.java')"
1326
1327# TODO: Right now we generate the asset resources twice, first as part
1328# of generating the Java classes, then at the end when packaging the final
1329# assets. This should be changed to do one of two things: (1) Don't generate
1330# any resource files the first time, only create classes during that stage;
1331# or (2) Don't use the -c flag with the second stage, instead taking the
1332# resource files from the first stage as additional input. My original intent
1333# was to use approach (2), but this requires a little more work in the tool.
1334# Maybe we should just use approach (1).
1335
1336# This rule creates the R.java and Manifest.java files, both of which
Ying Wang4f1ab922011-03-15 13:19:30 -07001337# are PRODUCT-neutral. Don't pass PRIVATE_PRODUCT_AAPT_CONFIG to this invocation.
The Android Open Source Project88b60792009-03-03 19:28:42 -08001338define create-resource-java-files
1339@mkdir -p $(PRIVATE_SOURCE_INTERMEDIATES_DIR)
1340@mkdir -p $(dir $(PRIVATE_RESOURCE_PUBLICS_OUTPUT))
Ying Wangc61d5932010-03-10 16:02:42 -08001341$(hide) $(AAPT) package $(PRIVATE_AAPT_FLAGS) -m \
Ying Wang4f1ab922011-03-15 13:19:30 -07001342 $(eval # PRIVATE_PRODUCT_AAPT_CONFIG is intentionally missing-- see comment.) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001343 $(addprefix -J , $(PRIVATE_SOURCE_INTERMEDIATES_DIR)) \
1344 $(addprefix -M , $(PRIVATE_ANDROID_MANIFEST)) \
1345 $(addprefix -P , $(PRIVATE_RESOURCE_PUBLICS_OUTPUT)) \
1346 $(addprefix -S , $(PRIVATE_RESOURCE_DIR)) \
1347 $(addprefix -A , $(PRIVATE_ASSET_DIR)) \
Dianne Hackborn9bd54042009-05-15 18:01:20 -07001348 $(addprefix -I , $(PRIVATE_AAPT_INCLUDES)) \
Joe Onorato2daa2b32009-08-30 13:39:24 -07001349 $(addprefix -G , $(PRIVATE_PROGUARD_OPTIONS_FILE)) \
Ying Wangbb9c2302011-04-08 17:27:35 -07001350 $(addprefix --min-sdk-version , $(PRIVATE_DEFAULT_APP_TARGET_SDK)) \
1351 $(addprefix --target-sdk-version , $(PRIVATE_DEFAULT_APP_TARGET_SDK)) \
Ying Wang1ae607a2010-06-23 13:34:22 -07001352 $(if $(filter --version-code,$(PRIVATE_AAPT_FLAGS)),,$(addprefix --version-code , $(PLATFORM_SDK_VERSION))) \
Ying Wang8f5069b2010-06-29 11:08:13 -07001353 $(if $(filter --version-name,$(PRIVATE_AAPT_FLAGS)),,$(addprefix --version-name , $(PLATFORM_VERSION)-$(BUILD_NUMBER))) \
Ying Wang8c254822010-03-16 16:13:56 -07001354 $(addprefix --rename-manifest-package , $(PRIVATE_MANIFEST_PACKAGE_NAME)) \
Ying Wang3dae0ee2010-09-02 15:41:01 -07001355 $(addprefix --rename-instrumentation-target-package , $(PRIVATE_MANIFEST_INSTRUMENTATION_FOR))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001356endef
1357
1358ifeq ($(HOST_OS),windows)
1359xlint_unchecked :=
1360else
Jeffrey Chyan7adbf972010-07-07 13:42:19 -05001361xlint_unchecked := -Xlint:unchecked
The Android Open Source Project88b60792009-03-03 19:28:42 -08001362endif
1363
Brian Carlstrombb7c6d82011-04-01 15:45:58 -07001364ifeq (true, $(ENABLE_INCREMENTALJAVAC))
1365incremental_dex := --incremental
1366else
1367incremental_dex :=
1368endif
1369
The Android Open Source Project88b60792009-03-03 19:28:42 -08001370# emit-line, <word list>, <output file>
1371define emit-line
1372 $(if $(1),echo -n '$(strip $(1)) ' >> $(2))
1373endef
1374
1375# dump-words-to-file, <word list>, <output file>
1376define dump-words-to-file
1377 @rm -f $(2)
1378 @$(call emit-line,$(wordlist 1,200,$(1)),$(2))
1379 @$(call emit-line,$(wordlist 201,400,$(1)),$(2))
1380 @$(call emit-line,$(wordlist 401,600,$(1)),$(2))
1381 @$(call emit-line,$(wordlist 601,800,$(1)),$(2))
1382 @$(call emit-line,$(wordlist 801,1000,$(1)),$(2))
1383 @$(call emit-line,$(wordlist 1001,1200,$(1)),$(2))
1384 @$(call emit-line,$(wordlist 1201,1400,$(1)),$(2))
1385 @$(call emit-line,$(wordlist 1401,1600,$(1)),$(2))
1386 @$(call emit-line,$(wordlist 1601,1800,$(1)),$(2))
1387 @$(call emit-line,$(wordlist 1801,2000,$(1)),$(2))
1388 @$(call emit-line,$(wordlist 2001,2200,$(1)),$(2))
1389 @$(call emit-line,$(wordlist 2201,2400,$(1)),$(2))
1390 @$(call emit-line,$(wordlist 2401,2600,$(1)),$(2))
1391 @$(call emit-line,$(wordlist 2601,2800,$(1)),$(2))
1392 @$(call emit-line,$(wordlist 2801,3000,$(1)),$(2))
1393 @$(call emit-line,$(wordlist 3001,3200,$(1)),$(2))
1394 @$(call emit-line,$(wordlist 3201,3400,$(1)),$(2))
1395 @$(call emit-line,$(wordlist 3401,3600,$(1)),$(2))
1396 @$(call emit-line,$(wordlist 3601,3800,$(1)),$(2))
1397 @$(call emit-line,$(wordlist 3801,4000,$(1)),$(2))
Jesse Wilson72c941a2010-05-04 16:33:49 -07001398 @$(call emit-line,$(wordlist 4001,4200,$(1)),$(2))
1399 @$(call emit-line,$(wordlist 4201,4400,$(1)),$(2))
1400 @$(call emit-line,$(wordlist 4401,4600,$(1)),$(2))
1401 @$(call emit-line,$(wordlist 4601,4800,$(1)),$(2))
1402 @$(call emit-line,$(wordlist 4801,5000,$(1)),$(2))
1403 @$(if $(wordlist 5001,5002,$(1)),$(error Too many words ($(words $(1)))))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001404endef
1405
1406# For a list of jar files, unzip them to a specified directory,
1407# but make sure that no META-INF files come along for the ride.
1408#
1409# $(1): files to unzip
1410# $(2): destination directory
1411define unzip-jar-files
1412 $(hide) for f in $(1); \
1413 do \
1414 if [ ! -f $$f ]; then \
1415 echo Missing file $$f; \
1416 exit 1; \
1417 fi; \
Sriram Ramanf1a55f82009-06-09 15:08:29 -07001418 unzip -qo $$f -d $(2); \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001419 (cd $(2) && rm -rf META-INF); \
1420 done
1421endef
1422
Brian Carlstrom78269512010-12-10 12:10:24 -08001423# Common definition to invoke javac on the host and target.
1424#
1425# Some historical notes:
1426# - below we write the list of java files to java-source-list to avoid argument
1427# list length problems with Cygwin
1428# - we filter out duplicate java file names because eclipse's compiler
1429# doesn't like them.
1430#
1431# $(1): javac
1432# $(2): bootclasspath
1433define compile-java
Joe Onorato64d85d02009-04-09 19:31:12 -07001434$(hide) rm -f $@
1435$(hide) rm -rf $(PRIVATE_CLASS_INTERMEDIATES_DIR)
Brian Carlstrom78269512010-12-10 12:10:24 -08001436$(hide) mkdir -p $(dir $@)
Joe Onorato64d85d02009-04-09 19:31:12 -07001437$(hide) mkdir -p $(PRIVATE_CLASS_INTERMEDIATES_DIR)
Brian Carlstrom78269512010-12-10 12:10:24 -08001438$(call unzip-jar-files,$(PRIVATE_STATIC_JAVA_LIBRARIES),$(PRIVATE_CLASS_INTERMEDIATES_DIR))
Ying Wang015edd22011-01-20 15:01:56 -08001439$(call dump-words-to-file,$(PRIVATE_JAVA_SOURCES),$(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list)
Joe Onorato64d85d02009-04-09 19:31:12 -07001440$(hide) if [ -d "$(PRIVATE_SOURCE_INTERMEDIATES_DIR)" ]; then \
Ying Wang015edd22011-01-20 15:01:56 -08001441 find $(PRIVATE_SOURCE_INTERMEDIATES_DIR) -name '*.java' >> $(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list; \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001442fi
Ying Wang015edd22011-01-20 15:01:56 -08001443$(hide) tr ' ' '\n' < $(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list \
1444 | sort -u > $(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list-uniq
Joe Onorato149dd912011-05-31 18:21:07 -07001445$(hide) $(1) -encoding UTF-8 \
Brian Carlstrom78269512010-12-10 12:10:24 -08001446 $(strip $(PRIVATE_JAVAC_DEBUG_FLAGS)) \
1447 $(if $(findstring true,$(LOCAL_WARNINGS_ENABLE)),$(xlint_unchecked),) \
1448 $(2) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001449 $(addprefix -classpath ,$(strip \
1450 $(call normalize-path-list,$(PRIVATE_ALL_JAVA_LIBRARIES)))) \
Brian Carlstrom78269512010-12-10 12:10:24 -08001451 $(if $(findstring true,$(LOCAL_WARNINGS_ENABLE)),$(xlint_unchecked),) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001452 -extdirs "" -d $(PRIVATE_CLASS_INTERMEDIATES_DIR) \
Brian Carlstrom78269512010-12-10 12:10:24 -08001453 $(PRIVATE_JAVACFLAGS) \
Ying Wang015edd22011-01-20 15:01:56 -08001454 \@$(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list-uniq \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001455 || ( rm -rf $(PRIVATE_CLASS_INTERMEDIATES_DIR) ; exit 41 )
Ying Wang015edd22011-01-20 15:01:56 -08001456$(hide) rm -f $(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list
1457$(hide) rm -f $(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list-uniq
The Android Open Source Project88b60792009-03-03 19:28:42 -08001458$(hide) jar $(if $(strip $(PRIVATE_JAR_MANIFEST)),-cfm,-cf) \
1459 $@ $(PRIVATE_JAR_MANIFEST) -C $(PRIVATE_CLASS_INTERMEDIATES_DIR) .
Brian Carlstrom78269512010-12-10 12:10:24 -08001460endef
1461
1462define transform-java-to-classes.jar
1463@echo "target Java: $(PRIVATE_MODULE) ($(PRIVATE_CLASS_INTERMEDIATES_DIR))"
1464$(call compile-java,$(TARGET_JAVAC),$(PRIVATE_BOOTCLASSPATH))
Joe Onorato64d85d02009-04-09 19:31:12 -07001465$(hide) rm -rf $(PRIVATE_CLASS_INTERMEDIATES_DIR)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001466endef
1467
Ying Wang015edd22011-01-20 15:01:56 -08001468# Override the above definitions if we want to do incremetal javac
1469ifeq (true, $(ENABLE_INCREMENTALJAVAC))
1470define compile-java
1471$(hide) mkdir -p $(dir $@)
1472$(hide) mkdir -p $(PRIVATE_CLASS_INTERMEDIATES_DIR)
1473$(hide) touch $(PRIVATE_CLASS_INTERMEDIATES_DIR)/newstamp
1474$(call unzip-jar-files,$(PRIVATE_STATIC_JAVA_LIBRARIES),$(PRIVATE_CLASS_INTERMEDIATES_DIR))
1475$(hide) if [ -e $(PRIVATE_CLASS_INTERMEDIATES_DIR)/stamp ] ; then \
1476 newerFlag=$$(echo -n "-newer $(PRIVATE_CLASS_INTERMEDIATES_DIR)/stamp") ; \
1477 fi ; \
1478 find $(PRIVATE_JAVA_SOURCES) $$newerFlag > $(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list ; \
1479 if [ -d "$(PRIVATE_SOURCE_INTERMEDIATES_DIR)" ]; then \
1480 find $(PRIVATE_SOURCE_INTERMEDIATES_DIR) -name '*.java' $$newerFlag >> $(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list; \
1481 fi
1482$(hide) tr ' ' '\n' < $(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list \
1483 | sort -u > $(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list-uniq
1484@echo "(Incremental) build source files:"
1485@cat $(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list-uniq
1486$(hide) if [ -s $(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list-uniq ] ; then \
Joe Onorato149dd912011-05-31 18:21:07 -07001487 $(1) -encoding UTF-8 \
Ying Wang015edd22011-01-20 15:01:56 -08001488 $(strip $(PRIVATE_JAVAC_DEBUG_FLAGS)) \
1489 $(if $(findstring true,$(LOCAL_WARNINGS_ENABLE)),$(xlint_unchecked),) \
1490 $(2) \
1491 $(addprefix -classpath ,$(strip \
1492 $(call normalize-path-list,$(PRIVATE_ALL_JAVA_LIBRARIES) $(PRIVATE_CLASS_INTERMEDIATES_DIR)))) \
1493 $(if $(findstring true,$(LOCAL_WARNINGS_ENABLE)),$(xlint_unchecked),) \
1494 -extdirs "" -d $(PRIVATE_CLASS_INTERMEDIATES_DIR) \
1495 $(PRIVATE_JAVACFLAGS) \
1496 \@$(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list-uniq \
1497 || ( exit 41 ) \
1498fi
1499$(hide) rm -f $(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list
1500$(hide) rm -f $(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list-uniq
1501$(hide) rm -f $@
1502$(hide) jar $(if $(strip $(PRIVATE_JAR_MANIFEST)),-cfm,-cf) \
1503 $@ $(PRIVATE_JAR_MANIFEST) -C $(PRIVATE_CLASS_INTERMEDIATES_DIR) .
1504$(hide) mv $(PRIVATE_CLASS_INTERMEDIATES_DIR)/newstamp $(PRIVATE_CLASS_INTERMEDIATES_DIR)/stamp
1505endef
1506
1507define transform-java-to-classes.jar
1508@echo "target Java: $(PRIVATE_MODULE) ($(PRIVATE_CLASS_INTERMEDIATES_DIR))"
1509$(call compile-java,$(TARGET_JAVAC),$(PRIVATE_BOOTCLASSPATH))
1510endef
1511endif # ENABLE_INCREMENTALJAVAC
1512
The Android Open Source Project88b60792009-03-03 19:28:42 -08001513define transform-classes.jar-to-emma
1514$(hide) java -classpath $(EMMA_JAR) emma instr -outmode fullcopy -outfile \
Guang Zhu155afe32010-03-10 15:48:03 -08001515 $(PRIVATE_EMMA_COVERAGE_FILE) -ip $< -d $(PRIVATE_EMMA_INTERMEDIATES_DIR) \
Guang Zhu9cd3d8c2010-06-15 13:31:25 -07001516 $(addprefix -ix , $(PRIVATE_EMMA_COVERAGE_FILTER))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001517endef
1518
1519#TODO: use a smaller -Xmx value for most libraries;
1520# only core.jar and framework.jar need a heap this big.
Raphaelf6ff4c52009-08-18 14:43:32 -07001521# Avoid the memory arguments on Windows, dx fails to load for some reason with them.
The Android Open Source Project88b60792009-03-03 19:28:42 -08001522define transform-classes.jar-to-dex
1523@echo "target Dex: $(PRIVATE_MODULE)"
1524@mkdir -p $(dir $@)
Raphaelf6ff4c52009-08-18 14:43:32 -07001525$(hide) $(DX) \
1526 $(if $(findstring windows,$(HOST_OS)),,-JXms16M -JXmx1536M) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001527 --dex --output=$@ \
Brian Carlstrombb7c6d82011-04-01 15:45:58 -07001528 $(incremental_dex) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001529 $(if $(NO_OPTIMIZE_DX), \
1530 --no-optimize) \
1531 $(if $(GENERATE_DEX_DEBUG), \
1532 --debug --verbose \
1533 --dump-to=$(@:.dex=.lst) \
1534 --dump-width=1000) \
1535 $(PRIVATE_DX_FLAGS) \
1536 $<
1537endef
1538
1539# Create a mostly-empty .jar file that we'll add to later.
1540# The MacOS jar tool doesn't like creating empty jar files,
1541# so we need to give it something.
1542define create-empty-package
1543@mkdir -p $(dir $@)
1544$(hide) touch $(dir $@)/dummy
1545$(hide) (cd $(dir $@) && jar cf $(notdir $@) dummy)
1546$(hide) zip -qd $@ dummy
1547$(hide) rm $(dir $@)/dummy
1548endef
1549
1550#TODO: we kinda want to build different asset packages for
1551# different configurations, then combine them later (or something).
1552# Per-locale, etc.
1553# A list of dynamic and static parameters; build layers for
1554# dynamic params that lay over the static ones.
1555#TODO: update the manifest to point to the package file
Dianne Hackborn9bd54042009-05-15 18:01:20 -07001556#Note that the version numbers are given to aapt as simple default
1557#values; applications can override these by explicitly stating
1558#them in their manifest.
The Android Open Source Project88b60792009-03-03 19:28:42 -08001559define add-assets-to-package
Ying Wangc61d5932010-03-10 16:02:42 -08001560$(hide) $(AAPT) package -u $(PRIVATE_AAPT_FLAGS) \
Ying Wang4f1ab922011-03-15 13:19:30 -07001561 $(addprefix -c , $(PRIVATE_PRODUCT_AAPT_CONFIG)) \
Dianne Hackborna0f464a2011-10-14 19:37:57 -07001562 $(addprefix --preferred-configurations , $(PRIVATE_PRODUCT_AAPT_PREF_CONFIG)) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001563 $(addprefix -M , $(PRIVATE_ANDROID_MANIFEST)) \
1564 $(addprefix -S , $(PRIVATE_RESOURCE_DIR)) \
1565 $(addprefix -A , $(PRIVATE_ASSET_DIR)) \
1566 $(addprefix -I , $(PRIVATE_AAPT_INCLUDES)) \
Ying Wangbb9c2302011-04-08 17:27:35 -07001567 $(addprefix --min-sdk-version , $(PRIVATE_DEFAULT_APP_TARGET_SDK)) \
1568 $(addprefix --target-sdk-version , $(PRIVATE_DEFAULT_APP_TARGET_SDK)) \
Joe Onorato700b88e2010-10-05 17:33:58 -04001569 $(addprefix --product , $(TARGET_AAPT_CHARACTERISTICS)) \
Ying Wang1ae607a2010-06-23 13:34:22 -07001570 $(if $(filter --version-code,$(PRIVATE_AAPT_FLAGS)),,$(addprefix --version-code , $(PLATFORM_SDK_VERSION))) \
Ying Wang8f5069b2010-06-29 11:08:13 -07001571 $(if $(filter --version-name,$(PRIVATE_AAPT_FLAGS)),,$(addprefix --version-name , $(PLATFORM_VERSION)-$(BUILD_NUMBER))) \
Jeff Hamiltonbb67d212010-02-05 22:36:42 -06001572 $(addprefix --rename-manifest-package , $(PRIVATE_MANIFEST_PACKAGE_NAME)) \
Ying Wang3dae0ee2010-09-02 15:41:01 -07001573 $(addprefix --rename-instrumentation-target-package , $(PRIVATE_MANIFEST_INSTRUMENTATION_FOR)) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001574 -F $@
1575endef
1576
The Android Open Source Project88b60792009-03-03 19:28:42 -08001577define add-jni-shared-libs-to-package
1578$(hide) rm -rf $(dir $@)lib
Jack Palevicha0ab29b2010-06-18 15:38:07 +08001579$(hide) mkdir -p $(dir $@)lib/$(PRIVATE_JNI_SHARED_LIBRARIES_ABI)
1580$(hide) cp $(PRIVATE_JNI_SHARED_LIBRARIES) $(dir $@)lib/$(PRIVATE_JNI_SHARED_LIBRARIES_ABI)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001581$(hide) (cd $(dir $@) && zip -r $(notdir $@) lib)
1582$(hide) rm -rf $(dir $@)lib
1583endef
1584
The Android Open Source Project88b60792009-03-03 19:28:42 -08001585#TODO: update the manifest to point to the dex file
1586define add-dex-to-package
Ying Wang957fea52010-09-23 11:48:38 -07001587$(if $(filter classes.dex,$(notdir $(PRIVATE_DEX_FILE))),\
1588$(hide) $(AAPT) add -k $@ $(PRIVATE_DEX_FILE),\
1589$(eval _adtp_classes.dex := $(dir $(PRIVATE_DEX_FILE))/classes.dex)\
1590$(hide) cp $(PRIVATE_DEX_FILE) $(_adtp_classes.dex) && \
1591$(AAPT) add -k $@ $(_adtp_classes.dex) && \
1592rm -f $(_adtp_classes.dex))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001593endef
1594
1595define add-java-resources-to-package
Ying Wang194a8ec2011-06-06 14:34:52 -07001596$(call dump-words-to-file, $(PRIVATE_EXTRA_JAR_ARGS), $(dir $@)jar-arg-list)
1597$(hide) jar uf $@ @$(dir $@)jar-arg-list
1598@rm -f $(dir $@)jar-arg-list
The Android Open Source Project88b60792009-03-03 19:28:42 -08001599endef
1600
1601# Sign a package using the specified key/cert.
1602#
1603define sign-package
1604$(hide) mv $@ $@.unsigned
1605$(hide) java -jar $(SIGNAPK_JAR) \
1606 $(PRIVATE_CERTIFICATE) $(PRIVATE_PRIVATE_KEY) $@.unsigned $@.signed
1607$(hide) mv $@.signed $@
1608endef
1609
1610# Align STORED entries of a package on 4-byte boundaries
1611# to make them easier to mmap.
1612#
1613define align-package
1614$(hide) mv $@ $@.unaligned
1615$(hide) $(ZIPALIGN) -f 4 $@.unaligned $@.aligned
1616$(hide) mv $@.aligned $@
1617endef
1618
1619define install-dex-debug
1620$(hide) if [ -f "$(PRIVATE_INTERMEDIATES_DIR)/classes.dex" ]; then \
1621 mkdir -p $(TOP)/dalvik/DEBUG-FILES; \
1622 $(ACP) $(PRIVATE_INTERMEDIATES_DIR)/classes.dex \
1623 $(TOP)/dalvik/DEBUG-FILES/$(PRIVATE_MODULE).dex; \
1624 fi
1625$(hide) if [ -f "$(PRIVATE_INTERMEDIATES_DIR)/classes.lst" ]; then \
1626 mkdir -p $(TOP)/dalvik/DEBUG-FILES; \
1627 $(ACP) $(PRIVATE_INTERMEDIATES_DIR)/classes.lst \
1628 $(TOP)/dalvik/DEBUG-FILES/$(PRIVATE_MODULE).lst; \
1629 fi
1630endef
1631
1632# TODO(joeo): If we can ever upgrade to post 3.81 make and get the
1633# new prebuilt rules to work, we should change this to copy the
1634# resources to the out directory and then copy the resources.
1635
Brian Carlstrom78269512010-12-10 12:10:24 -08001636# Note: we intentionally don't clean PRIVATE_CLASS_INTERMEDIATES_DIR
1637# in transform-java-to-classes for the sake of vm-tests.
The Android Open Source Project88b60792009-03-03 19:28:42 -08001638define transform-host-java-to-package
1639@echo "host Java: $(PRIVATE_MODULE) ($(PRIVATE_CLASS_INTERMEDIATES_DIR))"
Ying Wang015edd22011-01-20 15:01:56 -08001640$(call compile-java,$(HOST_JAVAC),$(PRIVATE_BOOTCLASSPATH))
Ying Wang194a8ec2011-06-06 14:34:52 -07001641$(if $(PRIVATE_EXTRA_JAR_ARGS), $(call add-java-resources-to-package))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001642endef
1643
1644###########################################################
1645## Obfuscate a jar file
1646###########################################################
1647
1648# PRIVATE_KEEP_FILE is a file containing a list of classes
1649# PRIVATE_INTERMEDIATES_DIR is a directory we can use for temporary files
1650# The module using this must depend on
1651# $(HOST_OUT_JAVA_LIBRARIES)/proguard-4.0.1.jar
1652define obfuscate-jar
1653@echo "Obfuscate jar: $(notdir $@) ($@)"
1654@mkdir -p $(dir $@)
1655@rm -f $@
1656@mkdir -p $(PRIVATE_INTERMEDIATES_DIR)
1657$(hide) sed -e 's/^/-keep class /' < $(PRIVATE_KEEP_FILE) > \
1658 $(PRIVATE_INTERMEDIATES_DIR)/keep.pro
1659$(hide) java -Xmx512M -jar $(HOST_OUT_JAVA_LIBRARIES)/proguard-4.0.1.jar \
1660 -injars $< \
1661 -outjars $@ \
1662 -target 1.5 \
1663 -dontnote -dontwarn \
1664 -printmapping $(PRIVATE_INTERMEDIATES_DIR)/out.map \
1665 -forceprocessing \
1666 -renamesourcefileattribute SourceFile \
1667 -keepattributes Exceptions,InnerClasses,Signature,Deprecated,SourceFile,LineNumberTable,*Annotation*,EnclosingMethod \
1668 -repackageclasses \
1669 -keepclassmembers "class * { public protected *; }" \
1670 @$(PRIVATE_INTERMEDIATES_DIR)/keep.pro
1671endef
1672
1673###########################################################
1674## Commands for copying files
1675###########################################################
1676
1677# Define a rule to copy a header. Used via $(eval) by copy_headers.make.
1678# $(1): source header
1679# $(2): destination header
1680define copy-one-header
1681$(2): $(1)
1682 @echo "Header: $$@"
1683 $$(copy-file-to-new-target-with-cp)
1684endef
1685
1686# Define a rule to copy a file. For use via $(eval).
1687# $(1): source file
1688# $(2): destination file
1689define copy-one-file
1690$(2): $(1) | $(ACP)
1691 @echo "Copy: $$@"
1692 $$(copy-file-to-target)
1693endef
1694
1695# The -t option to acp and the -p option to cp is
1696# required for OSX. OSX has a ridiculous restriction
1697# where it's an error for a .a file's modification time
1698# to disagree with an internal timestamp, and this
1699# macro is used to install .a files (among other things).
1700
1701# Copy a single file from one place to another,
1702# preserving permissions and overwriting any existing
1703# file.
Ying Wang84ed6fa2011-01-18 17:21:20 -08001704# We disable the "-t" option for acp can not handle
1705# high resolution timestamp correctly on file systems like ext4.
1706# Therefore copy-file-to-target is the same as copy-file-to-new-target.
The Android Open Source Project88b60792009-03-03 19:28:42 -08001707define copy-file-to-target
1708@mkdir -p $(dir $@)
Ying Wang84ed6fa2011-01-18 17:21:20 -08001709$(hide) $(ACP) -fp $< $@
The Android Open Source Project88b60792009-03-03 19:28:42 -08001710endef
1711
1712# The same as copy-file-to-target, but use the local
1713# cp command instead of acp.
1714define copy-file-to-target-with-cp
1715@mkdir -p $(dir $@)
1716$(hide) cp -fp $< $@
1717endef
1718
Dianne Hackborn9c0c4b72009-08-11 19:16:46 -07001719# The same as copy-file-to-target, but use the zipalign tool to do so.
1720define copy-file-to-target-with-zipalign
1721@mkdir -p $(dir $@)
1722$(hide) $(ZIPALIGN) -f 4 $< $@
1723endef
1724
Doug Zongker1046d202009-08-06 13:02:19 -07001725# The same as copy-file-to-target, but strip out "# comment"-style
1726# comments (for config files and such).
1727define copy-file-to-target-strip-comments
1728@mkdir -p $(dir $@)
1729$(hide) sed -e 's/#.*$$//' -e 's/[ \t]*$$//' -e '/^$$/d' < $< > $@
1730endef
1731
The Android Open Source Project88b60792009-03-03 19:28:42 -08001732# The same as copy-file-to-target, but don't preserve
1733# the old modification time.
1734define copy-file-to-new-target
1735@mkdir -p $(dir $@)
1736$(hide) $(ACP) -fp $< $@
1737endef
1738
1739# The same as copy-file-to-new-target, but use the local
1740# cp command instead of acp.
1741define copy-file-to-new-target-with-cp
1742@mkdir -p $(dir $@)
1743$(hide) cp -f $< $@
1744endef
1745
1746# Copy a prebuilt file to a target location.
1747define transform-prebuilt-to-target
1748@echo "$(if $(PRIVATE_IS_HOST_MODULE),host,target) Prebuilt: $(PRIVATE_MODULE) ($@)"
1749$(copy-file-to-target)
1750endef
1751
Dianne Hackborn9c0c4b72009-08-11 19:16:46 -07001752# Copy a prebuilt file to a target location, using zipalign on it.
1753define transform-prebuilt-to-target-with-zipalign
1754@echo "$(if $(PRIVATE_IS_HOST_MODULE),host,target) Prebuilt APK: $(PRIVATE_MODULE) ($@)"
1755$(copy-file-to-target-with-zipalign)
1756endef
1757
Doug Zongker1046d202009-08-06 13:02:19 -07001758# Copy a prebuilt file to a target location, stripping "# comment" comments.
1759define transform-prebuilt-to-target-strip-comments
1760@echo "$(if $(PRIVATE_IS_HOST_MODULE),host,target) Prebuilt: $(PRIVATE_MODULE) ($@)"
1761$(copy-file-to-target-strip-comments)
1762endef
1763
The Android Open Source Project88b60792009-03-03 19:28:42 -08001764###########################################################
1765## On some platforms (MacOS), after copying a static
1766## library, ranlib must be run to update an internal
1767## timestamp!?!?!
1768###########################################################
1769
1770ifeq ($(HOST_RUN_RANLIB_AFTER_COPYING),true)
1771define transform-host-ranlib-copy-hack
1772 $(hide) ranlib $@ || true
1773endef
1774else
1775define transform-host-ranlib-copy-hack
Patrick Scott0e27dff2010-05-07 08:37:11 -04001776@true
The Android Open Source Project88b60792009-03-03 19:28:42 -08001777endef
1778endif
1779
1780ifeq ($(TARGET_RUN_RANLIB_AFTER_COPYING),true)
1781define transform-ranlib-copy-hack
1782 $(hide) ranlib $@
1783endef
1784else
1785define transform-ranlib-copy-hack
Patrick Scott0e27dff2010-05-07 08:37:11 -04001786@true
The Android Open Source Project88b60792009-03-03 19:28:42 -08001787endef
1788endif
1789
1790
1791###########################################################
Ying Wang3b2bdf12010-02-01 09:51:23 -08001792## Commands to call Proguard
1793###########################################################
1794
1795# Command to copy the file with acp, if proguard is disabled.
1796define proguard-disabled-commands
1797@echo Copying: $@
Ying Wang84ed6fa2011-01-18 17:21:20 -08001798$(hide) $(ACP) -fp $< $@
Ying Wang3b2bdf12010-02-01 09:51:23 -08001799endef
1800
1801# Command to call Proguard
1802# $(1): extra flags for instrumentation.
1803define proguard-enabled-commands
1804@echo Proguard: $@
1805$(hide) $(PROGUARD) -injars $< -outjars $@ $(PRIVATE_PROGUARD_FLAGS) $(1)
1806endef
1807
1808# Figure out the proguard dictionary file of the module that is instrumentationed for.
1809define get-instrumentation-proguard-flags
1810$(if $(PRIVATE_INSTRUMENTATION_FOR),$(if $(ALL_MODULES.$(PRIVATE_INSTRUMENTATION_FOR).PROGUARD_ENABLED),-applymapping $(call intermediates-dir-for,APPS,$(PRIVATE_INSTRUMENTATION_FOR),,COMMON)/proguard_dictionary))
1811endef
1812
1813define transform-jar-to-proguard
1814$(eval _instrumentation_proguard_flags:=$(call get-instrumentation-proguard-flags))
1815$(eval _enable_proguard:=$(PRIVATE_PROGUARD_ENABLED)$(_instrumentation_proguard_flags))
1816$(if $(_enable_proguard),$(call proguard-enabled-commands,$(_instrumentation_proguard_flags)),$(call proguard-disabled-commands))
1817$(eval _instrumentation_proguard_flags:=)
1818$(eval _enable_proguard:=)
1819endef
1820
1821
1822###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -08001823## Stuff source generated from one-off tools
1824###########################################################
1825
1826define transform-generated-source
1827@echo "target Generated: $(PRIVATE_MODULE) <= $<"
1828@mkdir -p $(dir $@)
1829$(hide) $(PRIVATE_CUSTOM_TOOL)
1830endef
1831
1832
1833###########################################################
1834## Assertions about attributes of the target
1835###########################################################
1836
1837# $(1): The file to check
1838ifndef get-file-size
1839$(error HOST_OS must define get-file-size)
1840endif
1841
Doug Zongker4647f122009-07-02 09:00:54 -07001842# Convert a partition data size (eg, as reported in /proc/mtd) to the
1843# size of the image used to flash that partition (which includes a
Lars Svensson9cb8c282010-12-06 15:24:58 +01001844# spare area for each page).
Doug Zongker4647f122009-07-02 09:00:54 -07001845# $(1): the partition data size
1846define image-size-from-data-size
Ying Wang4a2ecaf2011-02-09 17:24:27 -08001847$(strip $(eval _isfds_value := $$(shell echo $$$$(($(1) / $(BOARD_NAND_PAGE_SIZE) * \
1848 ($(BOARD_NAND_PAGE_SIZE)+$(BOARD_NAND_SPARE_SIZE))))))\
1849$(if $(filter 0, $(_isfds_value)),$(shell echo $$(($(BOARD_NAND_PAGE_SIZE)+$(BOARD_NAND_SPARE_SIZE)))),$(_isfds_value))\
1850$(eval _isfds_value :=))
Doug Zongker4647f122009-07-02 09:00:54 -07001851endef
1852
1853# $(1): The file(s) to check (often $@)
1854# $(2): The maximum total image size, in decimal bytes
Doug Zongker6dd2ae02009-08-25 17:23:57 -07001855# $(3): the type of filesystem "yaffs" or "raw"
The Android Open Source Project88b60792009-03-03 19:28:42 -08001856#
1857# If $(2) is empty, evaluates to "true"
1858#
1859# Reserve bad blocks. Make sure that MAX(1% of partition size, 2 blocks)
1860# is left over after the image has been flashed. Round the 1% up to the
1861# next whole flash block size.
1862define assert-max-file-size
1863$(if $(2), \
Doug Zongker742fa572009-07-08 12:09:04 -07001864 size=$$(for i in $(1); do $(call get-file-size,$$i); echo +; done; echo 0); \
1865 total=$$(( $$( echo "$$size" ) )); \
Doug Zongker4647f122009-07-02 09:00:54 -07001866 printname=$$(echo -n "$(1)" | tr " " +); \
1867 echo "$$printname total size is $$total"; \
1868 img_blocksize=$(call image-size-from-data-size,$(BOARD_FLASH_BLOCK_SIZE)); \
Doug Zongker6dd2ae02009-08-25 17:23:57 -07001869 if [ "$(3)" == "yaffs" ]; then \
Doug Zongker93d9ff42009-09-14 17:46:41 -07001870 reservedblocks=8; \
Doug Zongker6dd2ae02009-08-25 17:23:57 -07001871 else \
Doug Zongker4ac1ba62009-08-25 20:38:50 -07001872 reservedblocks=0; \
Doug Zongker6dd2ae02009-08-25 17:23:57 -07001873 fi; \
Doug Zongker4647f122009-07-02 09:00:54 -07001874 twoblocks=$$((img_blocksize * 2)); \
1875 onepct=$$((((($(2) / 100) - 1) / img_blocksize + 1) * img_blocksize)); \
Doug Zongker6dd2ae02009-08-25 17:23:57 -07001876 reserve=$$(((twoblocks > onepct ? twoblocks : onepct) + \
1877 reservedblocks * img_blocksize)); \
Doug Zongker4647f122009-07-02 09:00:54 -07001878 maxsize=$$(($(2) - reserve)); \
1879 if [ "$$total" -gt "$$maxsize" ]; then \
1880 echo "error: $$printname too large ($$total > [$(2) - $$reserve])"; \
1881 false; \
Doug Zongker742fa572009-07-08 12:09:04 -07001882 elif [ "$$total" -gt $$((maxsize - 32768)) ]; then \
Doug Zongker4647f122009-07-02 09:00:54 -07001883 echo "WARNING: $$printname approaching size limit ($$total now; limit $$maxsize)"; \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001884 fi \
1885 , \
1886 true \
1887 )
1888endef
1889
Doug Zongker8510a1e2009-08-07 16:38:08 -07001890# Like assert-max-file-size, but the second argument is a partition
1891# size, which we'll convert to a max image size before checking it
1892# against the files.
1893#
1894# $(1): The file(s) to check (often $@)
1895# $(2): The partition size.
1896define assert-max-image-size
1897$(if $(2), \
1898 $(call assert-max-file-size,$(1),$(call image-size-from-data-size,$(2))), \
1899 true)
1900endef
1901
Doug Zongkere01100c2009-06-19 17:12:18 -07001902
1903###########################################################
1904## Define device-specific radio files
1905###########################################################
1906
1907# Copy a radio image file to the output location, and add it to
1908# INSTALLED_RADIOIMAGE_TARGET.
1909# $(1): filename
1910define add-radio-file
Doug Zongker14833602010-02-02 13:12:04 -08001911 $(eval $(call add-radio-file-internal,$(1),$(notdir $(1))))
Doug Zongkere01100c2009-06-19 17:12:18 -07001912endef
1913define add-radio-file-internal
Doug Zongker14833602010-02-02 13:12:04 -08001914INSTALLED_RADIOIMAGE_TARGET += $$(PRODUCT_OUT)/$(2)
Doug Zongker14833602010-02-02 13:12:04 -08001915$$(PRODUCT_OUT)/$(2) : $$(LOCAL_PATH)/$(1) | $$(ACP)
Doug Zongkere01100c2009-06-19 17:12:18 -07001916 $$(transform-prebuilt-to-target)
1917endef
1918
1919
The Android Open Source Project88b60792009-03-03 19:28:42 -08001920###########################################################
Joe Onorato899e62a2010-02-04 17:37:21 -08001921# Override the package defined in $(1), setting the
1922# variables listed below differently.
1923#
1924# $(1): The makefile to override (relative to the source
1925# tree root)
1926# $(2): Old LOCAL_PACKAGE_NAME value.
1927# $(3): New LOCAL_PACKAGE_NAME value.
Ying Wang3dae0ee2010-09-02 15:41:01 -07001928# $(4): New LOCAL_MANIFEST_PACKAGE_NAME value.
1929# $(5): New LOCAL_CERTIFICATE value.
1930# $(6): New LOCAL_INSTRUMENTATION_FOR value.
1931# $(7): New LOCAL_MANIFEST_INSTRUMENTATION_FOR value.
Joe Onorato899e62a2010-02-04 17:37:21 -08001932#
1933# Note that LOCAL_PACKAGE_OVERRIDES is NOT cleared in
1934# clear_vars.mk.
1935###########################################################
1936define inherit-package
Ying Wang3dae0ee2010-09-02 15:41:01 -07001937 $(eval $(call inherit-package-internal,$(1),$(2),$(3),$(4),$(5),$(6),$(7)))
Joe Onorato899e62a2010-02-04 17:37:21 -08001938endef
1939
1940define inherit-package-internal
1941 LOCAL_PACKAGE_OVERRIDES \
Ying Wang3dae0ee2010-09-02 15:41:01 -07001942 := $(strip $(1))||$(strip $(2))||$(strip $(3))||$(strip $(4))||&&$(strip $(5))||&&$(strip $(6))||&&$(strip $(7)) $(LOCAL_PACKAGE_OVERRIDES)
Joe Onorato899e62a2010-02-04 17:37:21 -08001943 include $(1)
1944 LOCAL_PACKAGE_OVERRIDES \
1945 := $(wordlist 1,$(words $(LOCAL_PACKAGE_OVERRIDES)), $(LOCAL_PACKAGE_OVERRIDES))
1946endef
1947
1948# To be used with inherit-package above
1949# Evalutes to true if the package was overridden
1950define set-inherited-package-variables
1951$(strip $(call set-inherited-package-variables-internal))
1952endef
1953
1954define keep-or-override
1955$(eval $(1) := $(if $(2),$(2),$($(1))))
1956endef
1957
1958define set-inherited-package-variables-internal
1959 $(eval _o := $(subst ||, ,$(lastword $(LOCAL_PACKAGE_OVERRIDES))))
1960 $(eval _n := $(subst ||, ,$(firstword $(LOCAL_PACKAGE_OVERRIDES))))
1961 $(if $(filter $(word 2,$(_n)),$(LOCAL_PACKAGE_NAME)), \
1962 $(eval LOCAL_PACKAGE_NAME := $(word 3,$(_o))) \
1963 $(eval LOCAL_MANIFEST_PACKAGE_NAME := $(word 4,$(_o))) \
Ying Wang3dae0ee2010-09-02 15:41:01 -07001964 $(call keep-or-override,LOCAL_CERTIFICATE,$(patsubst &&%,%,$(word 5,$(_o)))) \
1965 $(call keep-or-override,LOCAL_INSTRUMENTATION_FOR,$(patsubst &&%,%,$(word 6,$(_o)))) \
1966 $(call keep-or-override,LOCAL_MANIFEST_INSTRUMENTATION_FOR,$(patsubst &&%,%,$(word 7,$(_o)))) \
Joe Onorato899e62a2010-02-04 17:37:21 -08001967 $(eval LOCAL_OVERRIDES_PACKAGES := $(sort $(LOCAL_OVERRIDES_PACKAGES) $(word 2,$(_o)))) \
1968 true \
1969 ,)
1970endef
1971
1972
1973###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -08001974## Other includes
1975###########################################################
1976
1977# -----------------------------------------------------------------
1978# Rules and functions to help copy important files to DIST_DIR
1979# when requested.
1980include $(BUILD_SYSTEM)/distdir.mk
1981
Jean-Baptiste Queru4074f232010-09-03 16:32:58 -07001982# -----------------------------------------------------------------
1983# The modules allowed to use a user tag
1984include $(BUILD_SYSTEM)/user_tags.mk
The Android Open Source Project88b60792009-03-03 19:28:42 -08001985
1986# broken:
1987# $(foreach file,$^,$(if $(findstring,.a,$(suffix $file)),-l$(file),$(file)))
1988
1989###########################################################
1990## Misc notes
1991###########################################################
1992
1993#DEPDIR = .deps
1994#df = $(DEPDIR)/$(*F)
1995
1996#SRCS = foo.c bar.c ...
1997
1998#%.o : %.c
1999# @$(MAKEDEPEND); \
2000# cp $(df).d $(df).P; \
2001# sed -e 's/#.*//' -e 's/^[^:]*: *//' -e 's/ *\\$$//' \
2002# -e '/^$$/ d' -e 's/$$/ :/' < $(df).d >> $(df).P; \
2003# rm -f $(df).d
2004# $(COMPILE.c) -o $@ $<
2005
2006#-include $(SRCS:%.c=$(DEPDIR)/%.P)
2007
2008
2009#%.o : %.c
2010# $(COMPILE.c) -MD -o $@ $<
2011# @cp $*.d $*.P; \
2012# sed -e 's/#.*//' -e 's/^[^:]*: *//' -e 's/ *\\$$//' \
2013# -e '/^$$/ d' -e 's/$$/ :/' < $*.d >> $*.P; \
2014# rm -f $*.d