blob: f3e496618472da435387ef24f776004277b90063 [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
Ying Wangfd626f22011-12-12 12:57:38 -080081# GPL module license files
82ALL_GPL_MODULE_LICENSE_FILES:=
83
The Android Open Source Project88b60792009-03-03 19:28:42 -080084###########################################################
85## Debugging; prints a variable list to stdout
86###########################################################
87
88# $(1): variable name list, not variable values
89define print-vars
90$(foreach var,$(1), \
91 $(info $(var):) \
92 $(foreach word,$($(var)), \
93 $(info $(space)$(space)$(word)) \
94 ) \
95 )
96endef
97
98###########################################################
Joe Onorato64d85d02009-04-09 19:31:12 -070099## Evaluates to true if the string contains the word true,
100## and empty otherwise
101## $(1): a var to test
102###########################################################
103
104define true-or-empty
105$(filter true, $(1))
106endef
107
108
109###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -0800110## Retrieve the directory of the current makefile
111###########################################################
112
113# Figure out where we are.
114define my-dir
Dave Bortb3926412009-05-19 16:12:22 -0700115$(strip \
Ying Wang68f1c772012-04-23 21:29:18 -0700116 $(eval LOCAL_MODULE_MAKEFILE := $$(lastword $$(MAKEFILE_LIST))) \
117 $(if $(filter $(CLEAR_VARS),$(LOCAL_MODULE_MAKEFILE)), \
Dave Bortb3926412009-05-19 16:12:22 -0700118 $(error LOCAL_PATH must be set before including $$(CLEAR_VARS)) \
119 , \
Ying Wang68f1c772012-04-23 21:29:18 -0700120 $(patsubst %/,%,$(dir $(LOCAL_MODULE_MAKEFILE))) \
Dave Bortb3926412009-05-19 16:12:22 -0700121 ) \
122 )
The Android Open Source Project88b60792009-03-03 19:28:42 -0800123endef
124
125###########################################################
126## Retrieve a list of all makefiles immediately below some directory
127###########################################################
128
129define all-makefiles-under
130$(wildcard $(1)/*/Android.mk)
131endef
132
133###########################################################
134## Look under a directory for makefiles that don't have parent
135## makefiles.
136###########################################################
137
138# $(1): directory to search under
139# Ignores $(1)/Android.mk
140define first-makefiles-under
Joe Onoratodc1a7282009-08-04 15:58:26 -0400141$(shell build/tools/findleaves.py --prune=out --prune=.repo --prune=.git \
142 --mindepth=2 $(1) Android.mk)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800143endef
144
145###########################################################
146## Retrieve a list of all makefiles immediately below your directory
147###########################################################
148
149define all-subdir-makefiles
150$(call all-makefiles-under,$(call my-dir))
151endef
152
153###########################################################
154## Look in the named list of directories for makefiles,
155## relative to the current directory.
156###########################################################
157
158# $(1): List of directories to look for under this directory
159define all-named-subdir-makefiles
Chih-Wei Huange73c4bb2011-01-16 18:31:29 +0800160$(wildcard $(addsuffix /Android.mk, $(addprefix $(call my-dir)/,$(1))))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800161endef
162
163###########################################################
164## Find all of the java files under the named directories.
165## Meant to be used like:
166## SRC_FILES := $(call all-java-files-under,src tests)
167###########################################################
168
169define all-java-files-under
170$(patsubst ./%,%, \
171 $(shell cd $(LOCAL_PATH) ; \
172 find $(1) -name "*.java" -and -not -name ".*") \
173 )
174endef
175
176###########################################################
177## Find all of the java files from here. Meant to be used like:
178## SRC_FILES := $(call all-subdir-java-files)
179###########################################################
180
181define all-subdir-java-files
182$(call all-java-files-under,.)
183endef
184
185###########################################################
186## Find all of the c files under the named directories.
187## Meant to be used like:
188## SRC_FILES := $(call all-c-files-under,src tests)
189###########################################################
190
191define all-c-files-under
192$(patsubst ./%,%, \
193 $(shell cd $(LOCAL_PATH) ; \
194 find $(1) -name "*.c" -and -not -name ".*") \
195 )
196endef
197
198###########################################################
199## Find all of the c files from here. Meant to be used like:
200## SRC_FILES := $(call all-subdir-c-files)
201###########################################################
202
203define all-subdir-c-files
204$(call all-c-files-under,.)
205endef
206
207###########################################################
208## Find all files named "I*.aidl" under the named directories,
209## which must be relative to $(LOCAL_PATH). The returned list
210## is relative to $(LOCAL_PATH).
211###########################################################
212
213define all-Iaidl-files-under
214$(patsubst ./%,%, \
215 $(shell cd $(LOCAL_PATH) ; \
216 find $(1) -name "I*.aidl" -and -not -name ".*") \
217 )
218endef
219
220###########################################################
221## Find all of the "I*.aidl" files under $(LOCAL_PATH).
222###########################################################
223
224define all-subdir-Iaidl-files
225$(call all-Iaidl-files-under,.)
226endef
227
228###########################################################
Bjorn Bringerta89c9902010-02-02 17:36:20 +0000229## Find all of the logtags files under the named directories.
230## Meant to be used like:
231## SRC_FILES := $(call all-logtags-files-under,src)
232###########################################################
233
234define all-logtags-files-under
235$(patsubst ./%,%, \
236 $(shell cd $(LOCAL_PATH) ; \
237 find $(1) -name "*.logtags" -and -not -name ".*") \
238 )
239endef
240
241###########################################################
Ying Wanga5fc87a2010-11-02 18:43:16 -0700242## Find all of the .proto files under the named directories.
243## Meant to be used like:
244## SRC_FILES := $(call all-proto-files-under,src)
245###########################################################
246
247define all-proto-files-under
248$(patsubst ./%,%, \
249 $(shell cd $(LOCAL_PATH) ; \
250 find $(1) -name "*.proto" -and -not -name ".*") \
251 )
252endef
253
254###########################################################
Ying Wang0bd59a02010-07-15 17:17:52 -0700255## Find all of the RenderScript files under the named directories.
256## Meant to be used like:
257## SRC_FILES := $(call all-renderscript-files-under,src)
258###########################################################
259
260define all-renderscript-files-under
261$(patsubst ./%,%, \
262 $(shell cd $(LOCAL_PATH) ; \
263 find $(1) -name "*.rs" -and -not -name ".*") \
264 )
265endef
266
267###########################################################
Jean-Baptiste Queru0a3cfdc2009-12-17 17:47:28 -0800268## Find all of the html files under the named directories.
269## Meant to be used like:
270## SRC_FILES := $(call all-html-files-under,src tests)
271###########################################################
272
273define all-html-files-under
274$(patsubst ./%,%, \
275 $(shell cd $(LOCAL_PATH) ; \
276 find $(1) -name "*.html" -and -not -name ".*") \
277 )
278endef
279
280###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -0800281## Find all of the html files from here. Meant to be used like:
282## SRC_FILES := $(call all-subdir-html-files)
283###########################################################
284
285define all-subdir-html-files
Jean-Baptiste Queru0a3cfdc2009-12-17 17:47:28 -0800286$(call all-html-files-under,.)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800287endef
288
289###########################################################
290## Find all of the files matching pattern
291## SRC_FILES := $(call find-subdir-files, <pattern>)
292###########################################################
293
294define find-subdir-files
295$(patsubst ./%,%,$(shell cd $(LOCAL_PATH) ; find $(1)))
296endef
297
298###########################################################
299# find the files in the subdirectory $1 of LOCAL_DIR
300# matching pattern $2, filtering out files $3
301# e.g.
302# SRC_FILES += $(call find-subdir-subdir-files, \
303# css, *.cpp, DontWantThis.cpp)
304###########################################################
305
306define find-subdir-subdir-files
307$(filter-out $(patsubst %,$(1)/%,$(3)),$(patsubst ./%,%,$(shell cd \
308 $(LOCAL_PATH) ; find $(1) -maxdepth 1 -name $(2))))
309endef
310
311###########################################################
312## Find all of the files matching pattern
313## SRC_FILES := $(call all-subdir-java-files)
314###########################################################
315
316define find-subdir-assets
317$(if $(1),$(patsubst ./%,%, \
Ying Wang6ab5d6a2011-08-10 16:05:51 -0700318 $(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 -0800319 $(warning Empty argument supplied to find-subdir-assets) \
320)
321endef
322
323###########################################################
324## Find various file types in a list of directories relative to $(LOCAL_PATH)
325###########################################################
326
327define find-other-java-files
328 $(call find-subdir-files,$(1) -name "*.java" -and -not -name ".*")
329endef
330
331define find-other-html-files
332 $(call find-subdir-files,$(1) -name "*.html" -and -not -name ".*")
333endef
334
335###########################################################
336## Scan through each directory of $(1) looking for files
337## that match $(2) using $(wildcard). Useful for seeing if
338## a given directory or one of its parents contains
339## a particular file. Returns the first match found,
340## starting furthest from the root.
341###########################################################
342
343define find-parent-file
344$(strip \
Ying Wanga67ce692011-03-03 13:29:38 -0800345 $(eval _fpf := $(wildcard $(foreach f, $(2), $(strip $(1))/$(f)))) \
The Android Open Source Project88b60792009-03-03 19:28:42 -0800346 $(if $(_fpf),$(_fpf), \
347 $(if $(filter-out ./ .,$(1)), \
348 $(call find-parent-file,$(patsubst %/,%,$(dir $(1))),$(2)) \
349 ) \
350 ) \
351)
352endef
353
354###########################################################
355## Function we can evaluate to introduce a dynamic dependency
356###########################################################
357
358define add-dependency
359$(1): $(2)
360endef
361
362###########################################################
363## Set up the dependencies for a prebuilt target
364## $(call add-prebuilt-file, srcfile, [targetclass])
365###########################################################
366
367define add-prebuilt-file
368 $(eval $(include-prebuilt))
369endef
370
371define include-prebuilt
372 include $$(CLEAR_VARS)
373 LOCAL_SRC_FILES := $(1)
374 LOCAL_BUILT_MODULE_STEM := $(1)
375 LOCAL_MODULE_SUFFIX := $$(suffix $(1))
376 LOCAL_MODULE := $$(basename $(1))
377 LOCAL_MODULE_CLASS := $(2)
378 include $$(BUILD_PREBUILT)
379endef
380
381###########################################################
382## do multiple prebuilts
383## $(call target class, files ...)
384###########################################################
385
386define add-prebuilt-files
387 $(foreach f,$(2),$(call add-prebuilt-file,$f,$(1)))
388endef
389
390
391
392###########################################################
393## The intermediates directory. Where object files go for
394## a given target. We could technically get away without
395## the "_intermediates" suffix on the directory, but it's
396## nice to be able to grep for that string to find out if
397## anyone's abusing the system.
398###########################################################
399
400# $(1): target class, like "APPS"
401# $(2): target name, like "NotePad"
402# $(3): if non-empty, this is a HOST target.
403# $(4): if non-empty, force the intermediates to be COMMON
404define intermediates-dir-for
405$(strip \
406 $(eval _idfClass := $(strip $(1))) \
407 $(if $(_idfClass),, \
408 $(error $(LOCAL_PATH): Class not defined in call to intermediates-dir-for)) \
409 $(eval _idfName := $(strip $(2))) \
410 $(if $(_idfName),, \
411 $(error $(LOCAL_PATH): Name not defined in call to intermediates-dir-for)) \
412 $(eval _idfPrefix := $(if $(strip $(3)),HOST,TARGET)) \
Ying Wanga83940f2010-09-24 18:09:04 -0700413 $(if $(filter $(_idfPrefix)-$(_idfClass),$(COMMON_MODULE_CLASSES))$(4), \
The Android Open Source Project88b60792009-03-03 19:28:42 -0800414 $(eval _idfIntBase := $($(_idfPrefix)_OUT_COMMON_INTERMEDIATES)) \
415 , \
416 $(eval _idfIntBase := $($(_idfPrefix)_OUT_INTERMEDIATES)) \
417 ) \
418 $(_idfIntBase)/$(_idfClass)/$(_idfName)_intermediates \
419)
420endef
421
422# Uses LOCAL_MODULE_CLASS, LOCAL_MODULE, and LOCAL_IS_HOST_MODULE
423# to determine the intermediates directory.
424#
425# $(1): if non-empty, force the intermediates to be COMMON
426define local-intermediates-dir
427$(strip \
428 $(if $(strip $(LOCAL_MODULE_CLASS)),, \
429 $(error $(LOCAL_PATH): LOCAL_MODULE_CLASS not defined before call to local-intermediates-dir)) \
430 $(if $(strip $(LOCAL_MODULE)),, \
431 $(error $(LOCAL_PATH): LOCAL_MODULE not defined before call to local-intermediates-dir)) \
432 $(call intermediates-dir-for,$(LOCAL_MODULE_CLASS),$(LOCAL_MODULE),$(LOCAL_IS_HOST_MODULE),$(1)) \
433)
434endef
435
436###########################################################
437## Convert "path/to/libXXX.so" to "-lXXX".
438## Any "path/to/libXXX.a" elements pass through unchanged.
439###########################################################
440
441define normalize-libraries
442$(foreach so,$(filter %.so,$(1)),-l$(patsubst lib%.so,%,$(notdir $(so))))\
443$(filter-out %.so,$(1))
444endef
445
446# TODO: change users to call the common version.
447define normalize-host-libraries
448$(call normalize-libraries,$(1))
449endef
450
451define normalize-target-libraries
452$(call normalize-libraries,$(1))
453endef
454
455###########################################################
456## Convert a list of short module names (e.g., "framework", "Browser")
457## into the list of files that are built for those modules.
458## NOTE: this won't return reliable results until after all
459## sub-makefiles have been included.
460## $(1): target list
461###########################################################
462
463define module-built-files
464$(foreach module,$(1),$(ALL_MODULES.$(module).BUILT))
465endef
466
467###########################################################
468## Convert a list of short modules names (e.g., "framework", "Browser")
469## into the list of files that are installed for those modules.
470## NOTE: this won't return reliable results until after all
471## sub-makefiles have been included.
472## $(1): target list
473###########################################################
474
475define module-installed-files
476$(foreach module,$(1),$(ALL_MODULES.$(module).INSTALLED))
477endef
478
479###########################################################
Joe Onorato64d85d02009-04-09 19:31:12 -0700480## Convert a list of short modules names (e.g., "framework", "Browser")
481## into the list of files that should be used when linking
482## against that module as a public API.
483## TODO: Allow this for more than JAVA_LIBRARIES modules
484## NOTE: this won't return reliable results until after all
485## sub-makefiles have been included.
486## $(1): target list
487###########################################################
488
489define module-stubs-files
490$(foreach module,$(1),$(ALL_MODULES.$(module).STUBS))
491endef
492
493###########################################################
494## Evaluates to the timestamp file for a doc module, which
495## is the dependency that should be used.
496## $(1): doc module
497###########################################################
498
499define doc-timestamp-for
500$(OUT_DOCS)/$(strip $(1))-timestamp
501endef
502
503
504###########################################################
Ying Wang912f8282010-09-28 17:27:56 -0700505## Convert "core ext framework" to "out/.../javalib.jar ..."
The Android Open Source Project88b60792009-03-03 19:28:42 -0800506## $(1): library list
507## $(2): Non-empty if IS_HOST_MODULE
508###########################################################
509
510# $(1): library name
511# $(2): Non-empty if IS_HOST_MODULE
512define _java-lib-dir
513$(call intermediates-dir-for, \
Ying Wang912f8282010-09-28 17:27:56 -0700514 JAVA_LIBRARIES,$(1),$(2),COMMON)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800515endef
516
517# $(1): library name
518# $(2): Non-empty if IS_HOST_MODULE
519define _java-lib-full-classes.jar
Ying Wang912f8282010-09-28 17:27:56 -0700520$(call _java-lib-dir,$(1),$(2))/classes$(COMMON_JAVA_PACKAGE_SUFFIX)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800521endef
522
523# $(1): library name list
524# $(2): Non-empty if IS_HOST_MODULE
525define java-lib-files
526$(foreach lib,$(1),$(call _java-lib-full-classes.jar,$(lib),$(2)))
527endef
528
529# $(1): library name
The Android Open Source Project88b60792009-03-03 19:28:42 -0800530# $(2): Non-empty if IS_HOST_MODULE
531define _java-lib-full-dep
Ying Wang912f8282010-09-28 17:27:56 -0700532$(call _java-lib-dir,$(1),$(2))/javalib$(COMMON_JAVA_PACKAGE_SUFFIX)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800533endef
534
535# $(1): library name list
536# $(2): Non-empty if IS_HOST_MODULE
537define java-lib-deps
538$(foreach lib,$(1),$(call _java-lib-full-dep,$(lib),$(2)))
539endef
540
541###########################################################
Joe Onorato8dc8faa2010-09-14 13:09:48 -0400542## Run rot13 on a string
543## $(1): the string. Must be one line.
544###########################################################
545define rot13
546$(shell echo $(1) | tr 'a-zA-Z' 'n-za-mN-ZA-M')
547endef
548
549
550###########################################################
551## Returns true if $(1) and $(2) are equal. Returns
552## the empty string if they are not equal.
553###########################################################
554define streq
555$(strip $(if $(strip $(1)),\
556 $(if $(strip $(2)),\
557 $(if $(filter-out __,_$(subst $(strip $(1)),,$(strip $(2)))$(subst $(strip $(2)),,$(strip $(1)))_),,true), \
558 ),\
559 $(if $(strip $(2)),\
560 ,\
561 true)\
562 ))
563endef
564
565###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -0800566## Convert "a b c" into "a:b:c"
567###########################################################
568
569empty :=
570space := $(empty) $(empty)
571
572define normalize-path-list
573$(subst $(space),:,$(strip $(1)))
574endef
575
576###########################################################
Joe Onorato64d85d02009-04-09 19:31:12 -0700577## Read the word out of a colon-separated list of words.
578## This has the same behavior as the built-in function
579## $(word n,str).
580##
581## The individual words may not contain spaces.
582##
583## $(1): 1 based index
584## $(2): value of the form a:b:c...
585###########################################################
586
587define word-colon
588$(word $(1),$(subst :,$(space),$(2)))
589endef
590
591###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -0800592## Convert "a=b c= d e = f" into "a=b c=d e=f"
593##
594## $(1): list to collapse
595## $(2): if set, separator word; usually "=", ":", or ":="
596## Defaults to "=" if not set.
597###########################################################
598
599define collapse-pairs
600$(eval _cpSEP := $(strip $(if $(2),$(2),=)))\
601$(subst $(space)$(_cpSEP)$(space),$(_cpSEP),$(strip \
602 $(subst $(_cpSEP), $(_cpSEP) ,$(1))))
603endef
604
The Android Open Source Project88b60792009-03-03 19:28:42 -0800605###########################################################
Ying Wang7e8d4422011-06-17 17:05:35 -0700606## Given a list of pairs, if multiple pairs have the same
607## first components, keep only the first pair.
608##
609## $(1): list of pairs
610## $(2): the separator word, such as ":", "=", etc.
611define uniq-pairs-by-first-component
612$(eval _upbfc_fc_set :=)\
613$(strip $(foreach w,$(1), $(eval _first := $(word 1,$(subst $(2),$(space),$(w))))\
614 $(if $(filter $(_upbfc_fc_set),$(_first)),,$(w)\
615 $(eval _upbfc_fc_set += $(_first)))))\
616$(eval _upbfc_fc_set :=)\
617$(eval _first:=)
618endef
619
620###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -0800621## MODULE_TAG set operations
622###########################################################
623
624# Given a list of tags, return the targets that specify
625# any of those tags.
626# $(1): tag list
627define modules-for-tag-list
628$(sort $(foreach tag,$(1),$(ALL_MODULE_TAGS.$(tag))))
629endef
630
631# Same as modules-for-tag-list, but operates on
632# ALL_MODULE_NAME_TAGS.
633# $(1): tag list
634define module-names-for-tag-list
635$(sort $(foreach tag,$(1),$(ALL_MODULE_NAME_TAGS.$(tag))))
636endef
637
638# Given an accept and reject list, find the matching
639# set of targets. If a target has multiple tags and
640# any of them are rejected, the target is rejected.
641# Reject overrides accept.
642# $(1): list of tags to accept
643# $(2): list of tags to reject
644#TODO(dbort): do $(if $(strip $(1)),$(1),$(ALL_MODULE_TAGS))
Jean-Baptiste Queru75127b72010-01-07 11:44:22 -0800645#TODO(jbq): as of 20100106 nobody uses the second parameter
The Android Open Source Project88b60792009-03-03 19:28:42 -0800646define get-tagged-modules
647$(filter-out \
648 $(call modules-for-tag-list,$(2)), \
649 $(call modules-for-tag-list,$(1)))
650endef
651
Joe Onorato64d85d02009-04-09 19:31:12 -0700652###########################################################
653## Append a leaf to a base path. Properly deals with
654## base paths ending in /.
655##
656## $(1): base path
657## $(2): leaf path
658###########################################################
659
660define append-path
661$(subst //,/,$(1)/$(2))
662endef
663
The Android Open Source Project88b60792009-03-03 19:28:42 -0800664
665###########################################################
666## Package filtering
667###########################################################
668
669# Given a list of installed modules (short or long names)
670# return a list of the packages (yes, .apk packages, not
671# modules in general) that are overridden by this list and,
672# therefore, should not be installed.
673# $(1): mixed list of installed modules
674# TODO: This is fragile; find a reliable way to get this information.
675define _get-package-overrides
676 $(eval ### Discard any words containing slashes, unless they end in .apk, \
677 ### in which case trim off the directory component and the suffix. \
678 ### If there are no slashes, keep the entire word.)
679 $(eval _gpo_names := $(subst /,@@@ @@@,$(1)))
680 $(eval _gpo_names := \
681 $(filter %.apk,$(_gpo_names)) \
682 $(filter-out %@@@ @@@%,$(_gpo_names)))
683 $(eval _gpo_names := $(patsubst %.apk,%,$(_gpo_names)))
684 $(eval _gpo_names := $(patsubst @@@%,%,$(_gpo_names)))
685
686 $(eval ### Remove any remaining words that contain dots.)
687 $(eval _gpo_names := $(subst .,@@@ @@@,$(_gpo_names)))
688 $(eval _gpo_names := $(filter-out %@@@ @@@%,$(_gpo_names)))
689
690 $(eval ### Now we have a list of any words that could possibly refer to \
691 ### packages, although there may be words that do not. Only \
692 ### real packages will be present under PACKAGES.*, though.)
693 $(foreach _gpo_name,$(_gpo_names),$(PACKAGES.$(_gpo_name).OVERRIDES))
694endef
695
696define get-package-overrides
Conley Owensd7a1a9b2011-12-22 09:46:19 -0800697$(sort $(strip $(call _get-package-overrides,$(1))))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800698endef
699
700###########################################################
701## Output the command lines, or not
702###########################################################
703
704ifeq ($(strip $(SHOW_COMMANDS)),)
705define pretty
706@echo $1
707endef
708hide := @
709else
710define pretty
711endef
712hide :=
713endif
714
715###########################################################
716## Dump the variables that are associated with targets
717###########################################################
718
719define dump-module-variables
720@echo all_dependencies=$^
721@echo PRIVATE_YACCFLAGS=$(PRIVATE_YACCFLAGS);
722@echo PRIVATE_CFLAGS=$(PRIVATE_CFLAGS);
723@echo PRIVATE_CPPFLAGS=$(PRIVATE_CPPFLAGS);
724@echo PRIVATE_DEBUG_CFLAGS=$(PRIVATE_DEBUG_CFLAGS);
725@echo PRIVATE_C_INCLUDES=$(PRIVATE_C_INCLUDES);
726@echo PRIVATE_LDFLAGS=$(PRIVATE_LDFLAGS);
727@echo PRIVATE_LDLIBS=$(PRIVATE_LDLIBS);
728@echo PRIVATE_ARFLAGS=$(PRIVATE_ARFLAGS);
729@echo PRIVATE_AAPT_FLAGS=$(PRIVATE_AAPT_FLAGS);
730@echo PRIVATE_DX_FLAGS=$(PRIVATE_DX_FLAGS);
Brian Carlstromf184a0f2010-02-01 11:13:32 -0800731@echo PRIVATE_JAVACFLAGS=$(PRIVATE_JAVACFLAGS);
The Android Open Source Project88b60792009-03-03 19:28:42 -0800732@echo PRIVATE_JAVA_LIBRARIES=$(PRIVATE_JAVA_LIBRARIES);
733@echo PRIVATE_ALL_SHARED_LIBRARIES=$(PRIVATE_ALL_SHARED_LIBRARIES);
734@echo PRIVATE_ALL_STATIC_LIBRARIES=$(PRIVATE_ALL_STATIC_LIBRARIES);
735@echo PRIVATE_ALL_WHOLE_STATIC_LIBRARIES=$(PRIVATE_ALL_WHOLE_STATIC_LIBRARIES);
736@echo PRIVATE_ALL_OBJECTS=$(PRIVATE_ALL_OBJECTS);
Jeff Brown703e7c62011-02-04 20:15:00 -0800737@echo PRIVATE_NO_CRT=$(PRIVATE_NO_CRT);
The Android Open Source Project88b60792009-03-03 19:28:42 -0800738endef
739
740###########################################################
741## Commands for using sed to replace given variable values
742###########################################################
743
744define transform-variables
745@mkdir -p $(dir $@)
746@echo "Sed: $(if $(PRIVATE_MODULE),$(PRIVATE_MODULE),$@) <= $<"
747$(hide) sed $(foreach var,$(REPLACE_VARS),-e "s/{{$(var)}}/$(subst /,\/,$(PWD)/$($(var)))/g") $< >$@
748$(hide) if [ "$(suffix $@)" = ".sh" ]; then chmod a+rx $@; fi
749endef
750
751
752###########################################################
753## Commands for munging the dependency files GCC generates
754###########################################################
755
756define transform-d-to-p
Ying Wang3a7e4cc2011-01-28 14:14:47 -0800757$(hide) cp $(@:%.o=%.d) $(@:%.o=%.P); \
The Android Open Source Project88b60792009-03-03 19:28:42 -0800758 sed -e 's/#.*//' -e 's/^[^:]*: *//' -e 's/ *\\$$//' \
759 -e '/^$$/ d' -e 's/$$/ :/' < $(@:%.o=%.d) >> $(@:%.o=%.P); \
760 rm -f $(@:%.o=%.d)
761endef
762
763###########################################################
764## Commands for running lex
765###########################################################
766
767define transform-l-to-cpp
768@mkdir -p $(dir $@)
769@echo "Lex: $(PRIVATE_MODULE) <= $<"
770$(hide) $(LEX) -o$@ $<
771endef
772
773###########################################################
774## Commands for running yacc
775##
776## Because the extension of c++ files can change, the
777## extension must be specified in $1.
778## E.g, "$(call transform-y-to-cpp,.cpp)"
779###########################################################
780
781define transform-y-to-cpp
782@mkdir -p $(dir $@)
783@echo "Yacc: $(PRIVATE_MODULE) <= $<"
784$(YACC) $(PRIVATE_YACCFLAGS) -o $@ $<
785touch $(@:$1=$(YACC_HEADER_SUFFIX))
786echo '#ifndef '$(@F:$1=_h) > $(@:$1=.h)
787echo '#define '$(@F:$1=_h) >> $(@:$1=.h)
788cat $(@:$1=$(YACC_HEADER_SUFFIX)) >> $(@:$1=.h)
789echo '#endif' >> $(@:$1=.h)
790rm -f $(@:$1=$(YACC_HEADER_SUFFIX))
791endef
792
Ying Wang0bd59a02010-07-15 17:17:52 -0700793###########################################################
794## Commands to compile RenderScript
795###########################################################
Ying Wang0bd59a02010-07-15 17:17:52 -0700796
797define transform-renderscripts-to-java-and-bc
798@echo "RenderScript: $(PRIVATE_MODULE) <= $(PRIVATE_RS_SOURCE_FILES)"
799$(hide) rm -rf $(PRIVATE_RS_OUTPUT_DIR)
800$(hide) mkdir -p $(PRIVATE_RS_OUTPUT_DIR)/res/raw
801$(hide) mkdir -p $(PRIVATE_RS_OUTPUT_DIR)/src
Ying Wang7d83ef82011-05-25 17:16:22 -0700802$(hide) $(PRIVATE_RS_CC) \
Ying Wangebfddaa2010-07-30 18:37:29 -0700803 -o $(PRIVATE_RS_OUTPUT_DIR)/res/raw \
804 -p $(PRIVATE_RS_OUTPUT_DIR)/src \
Ying Wang24e1c012010-10-07 18:57:57 -0700805 -d $(PRIVATE_RS_OUTPUT_DIR) \
806 -a $@ -MD \
Stephen Hinesc963eae2011-08-10 13:53:05 -0700807 $(addprefix -target-api , $(PRIVATE_RS_TARGET_API)) \
Stephen Hines914f7a22011-12-06 18:43:24 -0800808 $(PRIVATE_RS_FLAGS) \
Ying Wang51280272010-09-01 13:28:52 -0700809 $(foreach inc,$(PRIVATE_RS_INCLUDES),$(addprefix -I , $(inc))) \
Ying Wangebfddaa2010-07-30 18:37:29 -0700810 $(PRIVATE_RS_SOURCE_FILES)
Shih-wei Liaoc6560302010-10-23 03:07:13 -0700811#$(hide) $(LLVM_RS_LINK) \
812# $(PRIVATE_RS_OUTPUT_DIR)/res/raw/*.bc
Ying Wang0bd59a02010-07-15 17:17:52 -0700813$(hide) mkdir -p $(dir $@)
814$(hide) touch $@
815endef
816
The Android Open Source Project88b60792009-03-03 19:28:42 -0800817
818###########################################################
819## Commands for running aidl
820###########################################################
821
822define transform-aidl-to-java
823@mkdir -p $(dir $@)
824@echo "Aidl: $(PRIVATE_MODULE) <= $<"
825$(hide) $(AIDL) -d$(patsubst %.java,%.P,$@) $(PRIVATE_AIDL_FLAGS) $< $@
826endef
827#$(AIDL) $(PRIVATE_AIDL_FLAGS) $< - | indent -nut -br -npcs -l1000 > $@
828
829
Doug Zongker9bd49622009-11-30 14:28:59 -0800830###########################################################
831## Commands for running java-event-log-tags.py
832###########################################################
833
834define transform-logtags-to-java
835@mkdir -p $(dir $@)
836@echo "logtags: $@ <= $<"
Doug Zongkerabfbbe22010-02-16 14:32:08 -0800837$(hide) $(JAVATAGS) -o $@ $^
Doug Zongker9bd49622009-11-30 14:28:59 -0800838endef
839
The Android Open Source Project88b60792009-03-03 19:28:42 -0800840
841###########################################################
Ying Wanga5fc87a2010-11-02 18:43:16 -0700842## Commands for running protoc to compile .proto into .java
843###########################################################
844
845define transform-proto-to-java
846@mkdir -p $(dir $@)
847@echo "Protoc: $@ <= $(PRIVATE_PROTO_SRC_FILES)"
848@rm -rf $(PRIVATE_PROTO_JAVA_OUTPUT_DIR)
849@mkdir -p $(PRIVATE_PROTO_JAVA_OUTPUT_DIR)
Bjorn Bringert20f5efd2011-10-18 16:08:27 +0100850$(hide) for f in $(PRIVATE_PROTO_SRC_FILES); do \
851 $(PROTOC) \
852 $(addprefix --proto_path=, $(PRIVATE_PROTO_INCLUDES)) \
853 $(PRIVATE_PROTO_JAVA_OUTPUT_OPTION)=$(PRIVATE_PROTO_JAVA_OUTPUT_DIR) \
854 $(PRIVATE_PROTOC_FLAGS) \
Ying Wang707328a2012-01-30 11:56:07 -0800855 $$f || exit 33; \
Bjorn Bringert20f5efd2011-10-18 16:08:27 +0100856 done
Ying Wanga5fc87a2010-11-02 18:43:16 -0700857$(hide) touch $@
858endef
859
860######################################################################
861## Commands for running protoc to compile .proto into .pb.cc and .pb.h
862######################################################################
863define transform-proto-to-cc
864@mkdir -p $(dir $@)
865@echo "Protoc: $@ <= $<"
866$(hide) $(PROTOC) \
867 $(addprefix --proto_path=, $(PRIVATE_PROTO_INCLUDES)) \
Ying Wang33c0d952010-11-05 11:30:58 -0700868 $(PRIVATE_PROTOC_FLAGS) \
Ying Wanga5fc87a2010-11-02 18:43:16 -0700869 --cpp_out=$(PRIVATE_PROTO_CC_OUTPUT_DIR) $<
870endef
871
872
873###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -0800874## Commands for running gcc to compile a C++ file
875###########################################################
876
877define transform-cpp-to-o
878@mkdir -p $(dir $@)
879@echo "target $(PRIVATE_ARM_MODE) C++: $(PRIVATE_MODULE) <= $<"
880$(hide) $(PRIVATE_CXX) \
Ying Wangddbcad82011-04-18 11:45:44 -0700881 $(addprefix -I , $(PRIVATE_C_INCLUDES)) \
Ying Wang5f074802011-11-08 09:31:21 -0800882 @$(PRIVATE_IMPORT_INCLUDES) \
Ying Wang4761e562011-04-12 11:06:35 -0700883 $(addprefix -isystem ,\
884 $(if $(PRIVATE_NO_DEFAULT_COMPILER_FLAGS),, \
885 $(filter-out $(PRIVATE_C_INCLUDES), \
Ying Wangddbcad82011-04-18 11:45:44 -0700886 $(PRIVATE_TARGET_PROJECT_INCLUDES) \
Ying Wang4761e562011-04-12 11:06:35 -0700887 $(PRIVATE_TARGET_C_INCLUDES)))) \
The Android Open Source Project88b60792009-03-03 19:28:42 -0800888 -c \
889 $(if $(PRIVATE_NO_DEFAULT_COMPILER_FLAGS),, \
Ying Wang1a081002010-07-13 14:55:47 -0700890 $(PRIVATE_TARGET_GLOBAL_CFLAGS) \
891 $(PRIVATE_TARGET_GLOBAL_CPPFLAGS) \
The Android Open Source Project88b60792009-03-03 19:28:42 -0800892 $(PRIVATE_ARM_CFLAGS) \
893 ) \
Doug Kwan9a8ecf92011-05-10 21:50:58 -0700894 $(PRIVATE_RTTI_FLAG) \
The Android Open Source Project88b60792009-03-03 19:28:42 -0800895 $(PRIVATE_CFLAGS) \
896 $(PRIVATE_CPPFLAGS) \
897 $(PRIVATE_DEBUG_CFLAGS) \
Atte Peltomaki60fe9632011-12-21 09:24:09 -0800898 -MD -MF $(patsubst %.o,%.d,$@) -o $@ $<
Ying Wang3a7e4cc2011-01-28 14:14:47 -0800899$(transform-d-to-p)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800900endef
901
902
903###########################################################
904## Commands for running gcc to compile a C file
905###########################################################
906
907# $(1): extra flags
908define transform-c-or-s-to-o-no-deps
909@mkdir -p $(dir $@)
910$(hide) $(PRIVATE_CC) \
Ying Wangddbcad82011-04-18 11:45:44 -0700911 $(addprefix -I , $(PRIVATE_C_INCLUDES)) \
Ying Wang5f074802011-11-08 09:31:21 -0800912 @$(PRIVATE_IMPORT_INCLUDES) \
Ying Wang4761e562011-04-12 11:06:35 -0700913 $(addprefix -isystem ,\
914 $(if $(PRIVATE_NO_DEFAULT_COMPILER_FLAGS),, \
915 $(filter-out $(PRIVATE_C_INCLUDES), \
Ying Wangddbcad82011-04-18 11:45:44 -0700916 $(PRIVATE_TARGET_PROJECT_INCLUDES) \
Ying Wang4761e562011-04-12 11:06:35 -0700917 $(PRIVATE_TARGET_C_INCLUDES)))) \
The Android Open Source Project88b60792009-03-03 19:28:42 -0800918 -c \
919 $(if $(PRIVATE_NO_DEFAULT_COMPILER_FLAGS),, \
Ying Wang1a081002010-07-13 14:55:47 -0700920 $(PRIVATE_TARGET_GLOBAL_CFLAGS) \
The Android Open Source Project88b60792009-03-03 19:28:42 -0800921 $(PRIVATE_ARM_CFLAGS) \
922 ) \
923 $(PRIVATE_CFLAGS) \
924 $(1) \
925 $(PRIVATE_DEBUG_CFLAGS) \
Atte Peltomaki60fe9632011-12-21 09:24:09 -0800926 -MD -MF $(patsubst %.o,%.d,$@) -o $@ $<
The Android Open Source Project88b60792009-03-03 19:28:42 -0800927endef
928
929define transform-c-to-o-no-deps
930@echo "target $(PRIVATE_ARM_MODE) C: $(PRIVATE_MODULE) <= $<"
931$(call transform-c-or-s-to-o-no-deps, )
932endef
933
934define transform-s-to-o-no-deps
935@echo "target asm: $(PRIVATE_MODULE) <= $<"
936$(call transform-c-or-s-to-o-no-deps, $(PRIVATE_ASFLAGS))
937endef
938
939define transform-c-to-o
940$(transform-c-to-o-no-deps)
Ying Wang3a7e4cc2011-01-28 14:14:47 -0800941$(transform-d-to-p)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800942endef
943
944define transform-s-to-o
945$(transform-s-to-o-no-deps)
Ying Wang3a7e4cc2011-01-28 14:14:47 -0800946$(transform-d-to-p)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800947endef
948
949###########################################################
David 'Digit' Turner5dbb5292009-05-14 16:00:09 +0200950## Commands for running gcc to compile an Objective-C file
951## This should never happen for target builds but this
952## will error at build time.
953###########################################################
954
955define transform-m-to-o-no-deps
956@echo "target ObjC: $(PRIVATE_MODULE) <= $<"
957$(call transform-c-or-s-to-o-no-deps)
958endef
959
960define transform-m-to-o
961$(transform-m-to-o-no-deps)
Ying Wang3a7e4cc2011-01-28 14:14:47 -0800962$(transform-d-to-p)
David 'Digit' Turner5dbb5292009-05-14 16:00:09 +0200963endef
964
965###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -0800966## Commands for running gcc to compile a host C++ file
967###########################################################
968
969define transform-host-cpp-to-o
970@mkdir -p $(dir $@)
971@echo "host C++: $(PRIVATE_MODULE) <= $<"
972$(hide) $(PRIVATE_CXX) \
Ying Wangddbcad82011-04-18 11:45:44 -0700973 $(addprefix -I , $(PRIVATE_C_INCLUDES)) \
Ying Wang5f074802011-11-08 09:31:21 -0800974 @$(PRIVATE_IMPORT_INCLUDES) \
Ying Wangddbcad82011-04-18 11:45:44 -0700975 $(addprefix -isystem ,\
The Android Open Source Project88b60792009-03-03 19:28:42 -0800976 $(if $(PRIVATE_NO_DEFAULT_COMPILER_FLAGS),, \
Ying Wangddbcad82011-04-18 11:45:44 -0700977 $(filter-out $(PRIVATE_C_INCLUDES), \
978 $(HOST_PROJECT_INCLUDES) \
979 $(HOST_C_INCLUDES)))) \
The Android Open Source Project88b60792009-03-03 19:28:42 -0800980 -c \
981 $(if $(PRIVATE_NO_DEFAULT_COMPILER_FLAGS),, \
982 $(HOST_GLOBAL_CFLAGS) \
983 $(HOST_GLOBAL_CPPFLAGS) \
984 ) \
985 $(PRIVATE_CFLAGS) \
986 $(PRIVATE_CPPFLAGS) \
987 $(PRIVATE_DEBUG_CFLAGS) \
Atte Peltomaki60fe9632011-12-21 09:24:09 -0800988 -MD -MF $(patsubst %.o,%.d,$@) -o $@ $<
The Android Open Source Project88b60792009-03-03 19:28:42 -0800989$(transform-d-to-p)
990endef
991
992
993###########################################################
994## Commands for running gcc to compile a host C file
995###########################################################
996
997# $(1): extra flags
998define transform-host-c-or-s-to-o-no-deps
999@mkdir -p $(dir $@)
1000$(hide) $(PRIVATE_CC) \
Ying Wangddbcad82011-04-18 11:45:44 -07001001 $(addprefix -I , $(PRIVATE_C_INCLUDES)) \
Ying Wang5f074802011-11-08 09:31:21 -08001002 @$(PRIVATE_IMPORT_INCLUDES) \
Ying Wangddbcad82011-04-18 11:45:44 -07001003 $(addprefix -isystem ,\
The Android Open Source Project88b60792009-03-03 19:28:42 -08001004 $(if $(PRIVATE_NO_DEFAULT_COMPILER_FLAGS),, \
Ying Wangddbcad82011-04-18 11:45:44 -07001005 $(filter-out $(PRIVATE_C_INCLUDES), \
1006 $(HOST_PROJECT_INCLUDES) \
1007 $(HOST_C_INCLUDES)))) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001008 -c \
1009 $(if $(PRIVATE_NO_DEFAULT_COMPILER_FLAGS),, \
1010 $(HOST_GLOBAL_CFLAGS) \
1011 ) \
1012 $(PRIVATE_CFLAGS) \
1013 $(1) \
1014 $(PRIVATE_DEBUG_CFLAGS) \
Atte Peltomaki60fe9632011-12-21 09:24:09 -08001015 -MD -MF $(patsubst %.o,%.d,$@) -o $@ $<
The Android Open Source Project88b60792009-03-03 19:28:42 -08001016endef
1017
1018define transform-host-c-to-o-no-deps
1019@echo "host C: $(PRIVATE_MODULE) <= $<"
1020$(call transform-host-c-or-s-to-o-no-deps, )
1021endef
1022
1023define transform-host-s-to-o-no-deps
1024@echo "host asm: $(PRIVATE_MODULE) <= $<"
1025$(call transform-host-c-or-s-to-o-no-deps, $(PRIVATE_ASFLAGS))
1026endef
1027
1028define transform-host-c-to-o
1029$(transform-host-c-to-o-no-deps)
1030$(transform-d-to-p)
1031endef
1032
1033define transform-host-s-to-o
1034$(transform-host-s-to-o-no-deps)
1035$(transform-d-to-p)
1036endef
1037
1038###########################################################
David 'Digit' Turner5dbb5292009-05-14 16:00:09 +02001039## Commands for running gcc to compile a host Objective-C file
1040###########################################################
1041
1042define transform-host-m-to-o-no-deps
1043@echo "host ObjC: $(PRIVATE_MODULE) <= $<"
1044$(call transform-host-c-or-s-to-o-no-deps)
1045endef
1046
David 'Digit' Turner5ca286d2011-02-11 16:19:31 +01001047define transform-host-m-to-o
David 'Digit' Turner5dbb5292009-05-14 16:00:09 +02001048$(transform-host-m-to-o-no-deps)
1049$(transform-d-to-p)
1050endef
1051
1052###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -08001053## Commands for running ar
1054###########################################################
1055
Ying Wange4b24eb2010-05-27 11:55:39 -07001056define _concat-if-arg2-not-empty
1057$(if $(2),$(hide) $(1) $(2))
1058endef
1059
1060# Split long argument list into smaller groups and call the command repeatedly
1061#
1062# $(1): the command without arguments
1063# $(2): the arguments
1064define split-long-arguments
1065$(call _concat-if-arg2-not-empty,$(1),$(wordlist 1,500,$(2)))
1066$(call _concat-if-arg2-not-empty,$(1),$(wordlist 501,1000,$(2)))
1067$(call _concat-if-arg2-not-empty,$(1),$(wordlist 1001,1500,$(2)))
1068$(call _concat-if-arg2-not-empty,$(1),$(wordlist 1501,2000,$(2)))
1069$(call _concat-if-arg2-not-empty,$(1),$(wordlist 2001,2500,$(2)))
1070$(call _concat-if-arg2-not-empty,$(1),$(wordlist 2501,3000,$(2)))
1071$(call _concat-if-arg2-not-empty,$(1),$(wordlist 3001,99999,$(2)))
1072endef
1073
Ying Wanga02d3d92011-01-27 18:48:00 -08001074# $(1): the full path of the source static library.
1075define _extract-and-include-single-target-whole-static-lib
1076@echo "preparing StaticLib: $(PRIVATE_MODULE) [including $(1)]"
1077$(hide) ldir=$(PRIVATE_INTERMEDIATES_DIR)/WHOLE/$(basename $(notdir $(1)))_objs;\
1078 rm -rf $$ldir; \
1079 mkdir -p $$ldir; \
1080 filelist=; \
1081 for f in `$(TARGET_AR) t $(1)`; do \
1082 $(TARGET_AR) p $(1) $$f > $$ldir/$$f; \
1083 filelist="$$filelist $$ldir/$$f"; \
1084 done ; \
1085 $(TARGET_AR) $(TARGET_GLOBAL_ARFLAGS) $(PRIVATE_ARFLAGS) $@ $$filelist
1086
1087endef
1088
Dan Bornstein3d02eac2009-10-21 11:12:56 -07001089define extract-and-include-target-whole-static-libs
Dima Zavin46e9bec2009-05-27 19:41:07 -07001090$(foreach lib,$(PRIVATE_ALL_WHOLE_STATIC_LIBRARIES), \
Ying Wanga02d3d92011-01-27 18:48:00 -08001091 $(call _extract-and-include-single-target-whole-static-lib, $(lib)))
Dima Zavin46e9bec2009-05-27 19:41:07 -07001092endef
1093
The Android Open Source Project88b60792009-03-03 19:28:42 -08001094# Explicitly delete the archive first so that ar doesn't
1095# try to add to an existing archive.
1096define transform-o-to-static-lib
1097@mkdir -p $(dir $@)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001098@rm -f $@
Dan Bornstein3d02eac2009-10-21 11:12:56 -07001099$(extract-and-include-target-whole-static-libs)
Dima Zavin46e9bec2009-05-27 19:41:07 -07001100@echo "target StaticLib: $(PRIVATE_MODULE) ($@)"
Ying Wange4b24eb2010-05-27 11:55:39 -07001101$(call split-long-arguments,$(TARGET_AR) $(TARGET_GLOBAL_ARFLAGS) $(PRIVATE_ARFLAGS) $@,$(filter %.o, $^))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001102endef
1103
1104###########################################################
1105## Commands for running host ar
1106###########################################################
1107
Ying Wanga02d3d92011-01-27 18:48:00 -08001108# $(1): the full path of the source static library.
1109define _extract-and-include-single-host-whole-static-lib
1110@echo "preparing StaticLib: $(PRIVATE_MODULE) [including $(1)]"
1111$(hide) ldir=$(PRIVATE_INTERMEDIATES_DIR)/WHOLE/$(basename $(notdir $(1)))_objs;\
1112 rm -rf $$ldir; \
1113 mkdir -p $$ldir; \
1114 filelist=; \
Jeff Hamilton293f9392011-11-18 17:15:25 -06001115 for f in `$(HOST_AR) t $(1) | \grep '\.o$$'`; do \
Ying Wanga02d3d92011-01-27 18:48:00 -08001116 $(HOST_AR) p $(1) $$f > $$ldir/$$f; \
1117 filelist="$$filelist $$ldir/$$f"; \
1118 done ; \
1119 $(HOST_AR) $(HOST_GLOBAL_ARFLAGS) $(PRIVATE_ARFLAGS) $@ $$filelist
1120
1121endef
1122
Dan Bornstein3d02eac2009-10-21 11:12:56 -07001123define extract-and-include-host-whole-static-libs
1124$(foreach lib,$(PRIVATE_ALL_WHOLE_STATIC_LIBRARIES), \
Ying Wanga02d3d92011-01-27 18:48:00 -08001125 $(call _extract-and-include-single-host-whole-static-lib, $(lib)))
Dan Bornstein3d02eac2009-10-21 11:12:56 -07001126endef
1127
The Android Open Source Project88b60792009-03-03 19:28:42 -08001128# Explicitly delete the archive first so that ar doesn't
1129# try to add to an existing archive.
1130define transform-host-o-to-static-lib
1131@mkdir -p $(dir $@)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001132@rm -f $@
Dan Bornstein3d02eac2009-10-21 11:12:56 -07001133$(extract-and-include-host-whole-static-libs)
Dan Bornstein6bffc912009-10-15 13:01:36 -07001134@echo "host StaticLib: $(PRIVATE_MODULE) ($@)"
Ying Wange4b24eb2010-05-27 11:55:39 -07001135$(call split-long-arguments,$(HOST_AR) $(HOST_GLOBAL_ARFLAGS) $(PRIVATE_ARFLAGS) $@,$(filter %.o, $^))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001136endef
1137
1138
1139###########################################################
1140## Commands for running gcc to link a shared library or package
1141###########################################################
1142
1143# ld just seems to be so finicky with command order that we allow
1144# it to be overriden en-masse see combo/linux-arm.make for an example.
1145ifneq ($(HOST_CUSTOM_LD_COMMAND),true)
1146define transform-host-o-to-shared-lib-inner
Ying Wang3a7e4cc2011-01-28 14:14:47 -08001147$(hide) $(PRIVATE_CXX) \
Ying Wang80e6cce2011-01-24 23:25:36 -08001148 -Wl,-rpath-link=$(HOST_OUT_INTERMEDIATE_LIBRARIES) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001149 -Wl,-rpath,\$$ORIGIN/../lib \
1150 -shared -Wl,-soname,$(notdir $@) \
1151 $(PRIVATE_LDFLAGS) \
1152 $(HOST_GLOBAL_LD_DIRS) \
1153 $(if $(PRIVATE_NO_DEFAULT_COMPILER_FLAGS),, \
1154 $(HOST_GLOBAL_LDFLAGS) \
1155 ) \
1156 $(PRIVATE_ALL_OBJECTS) \
1157 -Wl,--whole-archive \
1158 $(call normalize-host-libraries,$(PRIVATE_ALL_WHOLE_STATIC_LIBRARIES)) \
1159 -Wl,--no-whole-archive \
Ying Wangfcdabd42011-04-25 14:22:41 -07001160 $(if $(PRIVATE_GROUP_STATIC_LIBRARIES),-Wl$(comma)--start-group) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001161 $(call normalize-host-libraries,$(PRIVATE_ALL_STATIC_LIBRARIES)) \
Ying Wangfcdabd42011-04-25 14:22:41 -07001162 $(if $(PRIVATE_GROUP_STATIC_LIBRARIES),-Wl$(comma)--end-group) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001163 $(call normalize-host-libraries,$(PRIVATE_ALL_SHARED_LIBRARIES)) \
1164 -o $@ \
1165 $(PRIVATE_LDLIBS)
1166endef
1167endif
1168
1169define transform-host-o-to-shared-lib
1170@mkdir -p $(dir $@)
1171@echo "host SharedLib: $(PRIVATE_MODULE) ($@)"
Ying Wang3a7e4cc2011-01-28 14:14:47 -08001172$(transform-host-o-to-shared-lib-inner)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001173endef
1174
1175define transform-host-o-to-package
1176@mkdir -p $(dir $@)
1177@echo "host Package: $(PRIVATE_MODULE) ($@)"
Ying Wang3a7e4cc2011-01-28 14:14:47 -08001178$(transform-host-o-to-shared-lib-inner)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001179endef
1180
1181
1182###########################################################
1183## Commands for running gcc to link a shared library or package
1184###########################################################
1185
1186#echo >$@.vers "{"; \
1187#echo >>$@.vers " global:"; \
1188#$(BUILD_SYSTEM)/filter_symbols.sh $(TARGET_NM) " " ";" $(filter %.o,$^) | sort -u >>$@.vers; \
1189#echo >>$@.vers " local:"; \
1190#echo >>$@.vers " *;"; \
1191#echo >>$@.vers "};"; \
1192
1193# -Wl,--version-script=$@.vers \
1194
1195# ld just seems to be so finicky with command order that we allow
1196# it to be overriden en-masse see combo/linux-arm.make for an example.
1197ifneq ($(TARGET_CUSTOM_LD_COMMAND),true)
1198define transform-o-to-shared-lib-inner
Ying Wang3a7e4cc2011-01-28 14:14:47 -08001199$(hide) $(PRIVATE_CXX) \
Ying Wang1a081002010-07-13 14:55:47 -07001200 $(PRIVATE_TARGET_GLOBAL_LDFLAGS) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001201 -Wl,-rpath-link=$(TARGET_OUT_INTERMEDIATE_LIBRARIES) \
1202 -Wl,-rpath,\$$ORIGIN/../lib \
1203 -shared -Wl,-soname,$(notdir $@) \
1204 $(PRIVATE_LDFLAGS) \
Ying Wang1a081002010-07-13 14:55:47 -07001205 $(PRIVATE_TARGET_GLOBAL_LD_DIRS) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001206 $(PRIVATE_ALL_OBJECTS) \
1207 -Wl,--whole-archive \
Ying Wang80e6cce2011-01-24 23:25:36 -08001208 $(call normalize-target-libraries,$(PRIVATE_ALL_WHOLE_STATIC_LIBRARIES)) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001209 -Wl,--no-whole-archive \
Ying Wangfcdabd42011-04-25 14:22:41 -07001210 $(if $(PRIVATE_GROUP_STATIC_LIBRARIES),-Wl$(comma)--start-group) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001211 $(call normalize-target-libraries,$(PRIVATE_ALL_STATIC_LIBRARIES)) \
Ying Wangfcdabd42011-04-25 14:22:41 -07001212 $(if $(PRIVATE_GROUP_STATIC_LIBRARIES),-Wl$(comma)--end-group) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001213 $(call normalize-target-libraries,$(PRIVATE_ALL_SHARED_LIBRARIES)) \
1214 -o $@ \
1215 $(PRIVATE_LDLIBS)
1216endef
1217endif
1218
1219define transform-o-to-shared-lib
1220@mkdir -p $(dir $@)
1221@echo "target SharedLib: $(PRIVATE_MODULE) ($@)"
Ying Wang3a7e4cc2011-01-28 14:14:47 -08001222$(transform-o-to-shared-lib-inner)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001223endef
1224
1225define transform-o-to-package
1226@mkdir -p $(dir $@)
1227@echo "target Package: $(PRIVATE_MODULE) ($@)"
Ying Wang3a7e4cc2011-01-28 14:14:47 -08001228$(transform-o-to-shared-lib-inner)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001229endef
1230
1231
1232###########################################################
1233## Commands for filtering a target executable or library
1234###########################################################
1235
The Android Open Source Project88b60792009-03-03 19:28:42 -08001236define transform-to-stripped
1237@mkdir -p $(dir $@)
1238@echo "target Strip: $(PRIVATE_MODULE) ($@)"
Bruce Beare45ac4342010-06-24 14:02:00 -07001239$(hide) $(TARGET_STRIP_COMMAND)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001240endef
1241
The Android Open Source Project88b60792009-03-03 19:28:42 -08001242
1243###########################################################
1244## Commands for running gcc to link an executable
1245###########################################################
1246
1247ifneq ($(TARGET_CUSTOM_LD_COMMAND),true)
1248define transform-o-to-executable-inner
Ying Wang3a7e4cc2011-01-28 14:14:47 -08001249$(hide) $(PRIVATE_CXX) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001250 $(TARGET_GLOBAL_LDFLAGS) \
1251 -Wl,-rpath-link=$(TARGET_OUT_INTERMEDIATE_LIBRARIES) \
1252 $(TARGET_GLOBAL_LD_DIRS) \
1253 -Wl,-rpath-link=$(TARGET_OUT_INTERMEDIATE_LIBRARIES) \
1254 -Wl,-rpath,\$$ORIGIN/../lib \
1255 $(PRIVATE_LDFLAGS) \
1256 $(TARGET_GLOBAL_LD_DIRS) \
1257 $(PRIVATE_ALL_OBJECTS) \
1258 -Wl,--whole-archive \
1259 $(call normalize-target-libraries,$(PRIVATE_ALL_WHOLE_STATIC_LIBRARIES)) \
1260 -Wl,--no-whole-archive \
Ying Wangfcdabd42011-04-25 14:22:41 -07001261 $(if $(PRIVATE_GROUP_STATIC_LIBRARIES),-Wl$(comma)--start-group) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001262 $(call normalize-target-libraries,$(PRIVATE_ALL_STATIC_LIBRARIES)) \
Ying Wangfcdabd42011-04-25 14:22:41 -07001263 $(if $(PRIVATE_GROUP_STATIC_LIBRARIES),-Wl$(comma)--end-group) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001264 $(call normalize-target-libraries,$(PRIVATE_ALL_SHARED_LIBRARIES)) \
1265 -o $@ \
1266 $(PRIVATE_LDLIBS)
1267endef
1268endif
1269
1270define transform-o-to-executable
1271@mkdir -p $(dir $@)
1272@echo "target Executable: $(PRIVATE_MODULE) ($@)"
Ying Wang3a7e4cc2011-01-28 14:14:47 -08001273$(transform-o-to-executable-inner)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001274endef
1275
1276
1277###########################################################
1278## Commands for running gcc to link a statically linked
1279## executable. In practice, we only use this on arm, so
1280## the other platforms don't have the
1281## transform-o-to-static-executable defined
1282###########################################################
1283
1284ifneq ($(TARGET_CUSTOM_LD_COMMAND),true)
1285define transform-o-to-static-executable-inner
1286endef
1287endif
1288
1289define transform-o-to-static-executable
1290@mkdir -p $(dir $@)
1291@echo "target StaticExecutable: $(PRIVATE_MODULE) ($@)"
Ying Wang3a7e4cc2011-01-28 14:14:47 -08001292$(transform-o-to-static-executable-inner)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001293endef
1294
1295
1296###########################################################
1297## Commands for running gcc to link a host executable
1298###########################################################
1299
1300ifneq ($(HOST_CUSTOM_LD_COMMAND),true)
1301define transform-host-o-to-executable-inner
Ying Wang3a7e4cc2011-01-28 14:14:47 -08001302$(hide) $(PRIVATE_CXX) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001303 $(PRIVATE_ALL_OBJECTS) \
1304 -Wl,--whole-archive \
1305 $(call normalize-host-libraries,$(PRIVATE_ALL_WHOLE_STATIC_LIBRARIES)) \
1306 -Wl,--no-whole-archive \
Ying Wangfcdabd42011-04-25 14:22:41 -07001307 $(if $(PRIVATE_GROUP_STATIC_LIBRARIES),-Wl$(comma)--start-group) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001308 $(call normalize-host-libraries,$(PRIVATE_ALL_STATIC_LIBRARIES)) \
Ying Wangfcdabd42011-04-25 14:22:41 -07001309 $(if $(PRIVATE_GROUP_STATIC_LIBRARIES),-Wl$(comma)--end-group) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001310 $(call normalize-host-libraries,$(PRIVATE_ALL_SHARED_LIBRARIES)) \
Conley Owensd9e7d252011-11-10 09:57:40 -08001311 -Wl,-rpath-link=$(HOST_OUT_INTERMEDIATE_LIBRARIES) \
1312 -Wl,-rpath,\$$ORIGIN/../lib \
1313 $(HOST_GLOBAL_LD_DIRS) \
1314 $(PRIVATE_LDFLAGS) \
1315 $(if $(PRIVATE_NO_DEFAULT_COMPILER_FLAGS),, \
1316 $(HOST_GLOBAL_LDFLAGS) \
1317 ) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001318 -o $@ \
1319 $(PRIVATE_LDLIBS)
1320endef
1321endif
1322
1323define transform-host-o-to-executable
1324@mkdir -p $(dir $@)
1325@echo "host Executable: $(PRIVATE_MODULE) ($@)"
Ying Wang3a7e4cc2011-01-28 14:14:47 -08001326$(transform-host-o-to-executable-inner)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001327endef
1328
1329
1330###########################################################
1331## Commands for running javac to make .class files
1332###########################################################
1333
1334#@echo "Source intermediates dir: $(PRIVATE_SOURCE_INTERMEDIATES_DIR)"
1335#@echo "Source intermediates: $$(find $(PRIVATE_SOURCE_INTERMEDIATES_DIR) -name '*.java')"
1336
1337# TODO: Right now we generate the asset resources twice, first as part
1338# of generating the Java classes, then at the end when packaging the final
1339# assets. This should be changed to do one of two things: (1) Don't generate
1340# any resource files the first time, only create classes during that stage;
1341# or (2) Don't use the -c flag with the second stage, instead taking the
1342# resource files from the first stage as additional input. My original intent
1343# was to use approach (2), but this requires a little more work in the tool.
1344# Maybe we should just use approach (1).
1345
1346# This rule creates the R.java and Manifest.java files, both of which
Ying Wang4f1ab922011-03-15 13:19:30 -07001347# are PRODUCT-neutral. Don't pass PRIVATE_PRODUCT_AAPT_CONFIG to this invocation.
The Android Open Source Project88b60792009-03-03 19:28:42 -08001348define create-resource-java-files
1349@mkdir -p $(PRIVATE_SOURCE_INTERMEDIATES_DIR)
1350@mkdir -p $(dir $(PRIVATE_RESOURCE_PUBLICS_OUTPUT))
Ying Wangc61d5932010-03-10 16:02:42 -08001351$(hide) $(AAPT) package $(PRIVATE_AAPT_FLAGS) -m \
Ying Wang4f1ab922011-03-15 13:19:30 -07001352 $(eval # PRIVATE_PRODUCT_AAPT_CONFIG is intentionally missing-- see comment.) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001353 $(addprefix -J , $(PRIVATE_SOURCE_INTERMEDIATES_DIR)) \
1354 $(addprefix -M , $(PRIVATE_ANDROID_MANIFEST)) \
1355 $(addprefix -P , $(PRIVATE_RESOURCE_PUBLICS_OUTPUT)) \
1356 $(addprefix -S , $(PRIVATE_RESOURCE_DIR)) \
1357 $(addprefix -A , $(PRIVATE_ASSET_DIR)) \
Dianne Hackborn9bd54042009-05-15 18:01:20 -07001358 $(addprefix -I , $(PRIVATE_AAPT_INCLUDES)) \
Joe Onorato2daa2b32009-08-30 13:39:24 -07001359 $(addprefix -G , $(PRIVATE_PROGUARD_OPTIONS_FILE)) \
Ying Wangbb9c2302011-04-08 17:27:35 -07001360 $(addprefix --min-sdk-version , $(PRIVATE_DEFAULT_APP_TARGET_SDK)) \
1361 $(addprefix --target-sdk-version , $(PRIVATE_DEFAULT_APP_TARGET_SDK)) \
Ying Wang1ae607a2010-06-23 13:34:22 -07001362 $(if $(filter --version-code,$(PRIVATE_AAPT_FLAGS)),,$(addprefix --version-code , $(PLATFORM_SDK_VERSION))) \
Ying Wang8f5069b2010-06-29 11:08:13 -07001363 $(if $(filter --version-name,$(PRIVATE_AAPT_FLAGS)),,$(addprefix --version-name , $(PLATFORM_VERSION)-$(BUILD_NUMBER))) \
Ying Wang8c254822010-03-16 16:13:56 -07001364 $(addprefix --rename-manifest-package , $(PRIVATE_MANIFEST_PACKAGE_NAME)) \
Ying Wang3dae0ee2010-09-02 15:41:01 -07001365 $(addprefix --rename-instrumentation-target-package , $(PRIVATE_MANIFEST_INSTRUMENTATION_FOR))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001366endef
1367
1368ifeq ($(HOST_OS),windows)
1369xlint_unchecked :=
1370else
Jeffrey Chyan7adbf972010-07-07 13:42:19 -05001371xlint_unchecked := -Xlint:unchecked
The Android Open Source Project88b60792009-03-03 19:28:42 -08001372endif
1373
Brian Carlstrombb7c6d82011-04-01 15:45:58 -07001374ifeq (true, $(ENABLE_INCREMENTALJAVAC))
1375incremental_dex := --incremental
1376else
1377incremental_dex :=
1378endif
1379
The Android Open Source Project88b60792009-03-03 19:28:42 -08001380# emit-line, <word list>, <output file>
1381define emit-line
1382 $(if $(1),echo -n '$(strip $(1)) ' >> $(2))
1383endef
1384
1385# dump-words-to-file, <word list>, <output file>
1386define dump-words-to-file
1387 @rm -f $(2)
1388 @$(call emit-line,$(wordlist 1,200,$(1)),$(2))
1389 @$(call emit-line,$(wordlist 201,400,$(1)),$(2))
1390 @$(call emit-line,$(wordlist 401,600,$(1)),$(2))
1391 @$(call emit-line,$(wordlist 601,800,$(1)),$(2))
1392 @$(call emit-line,$(wordlist 801,1000,$(1)),$(2))
1393 @$(call emit-line,$(wordlist 1001,1200,$(1)),$(2))
1394 @$(call emit-line,$(wordlist 1201,1400,$(1)),$(2))
1395 @$(call emit-line,$(wordlist 1401,1600,$(1)),$(2))
1396 @$(call emit-line,$(wordlist 1601,1800,$(1)),$(2))
1397 @$(call emit-line,$(wordlist 1801,2000,$(1)),$(2))
1398 @$(call emit-line,$(wordlist 2001,2200,$(1)),$(2))
1399 @$(call emit-line,$(wordlist 2201,2400,$(1)),$(2))
1400 @$(call emit-line,$(wordlist 2401,2600,$(1)),$(2))
1401 @$(call emit-line,$(wordlist 2601,2800,$(1)),$(2))
1402 @$(call emit-line,$(wordlist 2801,3000,$(1)),$(2))
1403 @$(call emit-line,$(wordlist 3001,3200,$(1)),$(2))
1404 @$(call emit-line,$(wordlist 3201,3400,$(1)),$(2))
1405 @$(call emit-line,$(wordlist 3401,3600,$(1)),$(2))
1406 @$(call emit-line,$(wordlist 3601,3800,$(1)),$(2))
1407 @$(call emit-line,$(wordlist 3801,4000,$(1)),$(2))
Jesse Wilson72c941a2010-05-04 16:33:49 -07001408 @$(call emit-line,$(wordlist 4001,4200,$(1)),$(2))
1409 @$(call emit-line,$(wordlist 4201,4400,$(1)),$(2))
1410 @$(call emit-line,$(wordlist 4401,4600,$(1)),$(2))
1411 @$(call emit-line,$(wordlist 4601,4800,$(1)),$(2))
1412 @$(call emit-line,$(wordlist 4801,5000,$(1)),$(2))
1413 @$(if $(wordlist 5001,5002,$(1)),$(error Too many words ($(words $(1)))))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001414endef
1415
1416# For a list of jar files, unzip them to a specified directory,
1417# but make sure that no META-INF files come along for the ride.
1418#
1419# $(1): files to unzip
1420# $(2): destination directory
1421define unzip-jar-files
1422 $(hide) for f in $(1); \
1423 do \
1424 if [ ! -f $$f ]; then \
1425 echo Missing file $$f; \
1426 exit 1; \
1427 fi; \
Sriram Ramanf1a55f82009-06-09 15:08:29 -07001428 unzip -qo $$f -d $(2); \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001429 (cd $(2) && rm -rf META-INF); \
1430 done
1431endef
1432
Brian Carlstrom78269512010-12-10 12:10:24 -08001433# Common definition to invoke javac on the host and target.
1434#
1435# Some historical notes:
1436# - below we write the list of java files to java-source-list to avoid argument
1437# list length problems with Cygwin
1438# - we filter out duplicate java file names because eclipse's compiler
1439# doesn't like them.
1440#
1441# $(1): javac
1442# $(2): bootclasspath
1443define compile-java
Joe Onorato64d85d02009-04-09 19:31:12 -07001444$(hide) rm -f $@
1445$(hide) rm -rf $(PRIVATE_CLASS_INTERMEDIATES_DIR)
Brian Carlstrom78269512010-12-10 12:10:24 -08001446$(hide) mkdir -p $(dir $@)
Joe Onorato64d85d02009-04-09 19:31:12 -07001447$(hide) mkdir -p $(PRIVATE_CLASS_INTERMEDIATES_DIR)
Brian Carlstrom78269512010-12-10 12:10:24 -08001448$(call unzip-jar-files,$(PRIVATE_STATIC_JAVA_LIBRARIES),$(PRIVATE_CLASS_INTERMEDIATES_DIR))
Ying Wang015edd22011-01-20 15:01:56 -08001449$(call dump-words-to-file,$(PRIVATE_JAVA_SOURCES),$(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list)
Joe Onorato64d85d02009-04-09 19:31:12 -07001450$(hide) if [ -d "$(PRIVATE_SOURCE_INTERMEDIATES_DIR)" ]; then \
Ying Wang015edd22011-01-20 15:01:56 -08001451 find $(PRIVATE_SOURCE_INTERMEDIATES_DIR) -name '*.java' >> $(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list; \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001452fi
Ying Wang015edd22011-01-20 15:01:56 -08001453$(hide) tr ' ' '\n' < $(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list \
1454 | sort -u > $(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list-uniq
Ying Wange109a1d2011-12-12 17:52:03 -08001455$(hide) if [ -s $(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list-uniq ] ; then \
1456 $(1) -encoding UTF-8 \
Brian Carlstrom78269512010-12-10 12:10:24 -08001457 $(strip $(PRIVATE_JAVAC_DEBUG_FLAGS)) \
1458 $(if $(findstring true,$(LOCAL_WARNINGS_ENABLE)),$(xlint_unchecked),) \
1459 $(2) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001460 $(addprefix -classpath ,$(strip \
1461 $(call normalize-path-list,$(PRIVATE_ALL_JAVA_LIBRARIES)))) \
Brian Carlstrom78269512010-12-10 12:10:24 -08001462 $(if $(findstring true,$(LOCAL_WARNINGS_ENABLE)),$(xlint_unchecked),) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001463 -extdirs "" -d $(PRIVATE_CLASS_INTERMEDIATES_DIR) \
Brian Carlstrom78269512010-12-10 12:10:24 -08001464 $(PRIVATE_JAVACFLAGS) \
Ying Wang015edd22011-01-20 15:01:56 -08001465 \@$(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list-uniq \
Ying Wange109a1d2011-12-12 17:52:03 -08001466 || ( rm -rf $(PRIVATE_CLASS_INTERMEDIATES_DIR) ; exit 41 ) \
1467fi
Ying Wang015edd22011-01-20 15:01:56 -08001468$(hide) rm -f $(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list
1469$(hide) rm -f $(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list-uniq
Ying Wang5758b8e2011-12-15 16:36:55 -08001470$(if $(PRIVATE_JAR_EXCLUDE_FILES), $(hide) find $(PRIVATE_CLASS_INTERMEDIATES_DIR) \
1471 -name $(word 1, $(PRIVATE_JAR_EXCLUDE_FILES)) \
1472 $(addprefix -o -name , $(wordlist 2, 999, $(PRIVATE_JAR_EXCLUDE_FILES))) \
1473 | xargs rm -rf)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001474$(hide) jar $(if $(strip $(PRIVATE_JAR_MANIFEST)),-cfm,-cf) \
1475 $@ $(PRIVATE_JAR_MANIFEST) -C $(PRIVATE_CLASS_INTERMEDIATES_DIR) .
Brian Carlstrom78269512010-12-10 12:10:24 -08001476endef
1477
1478define transform-java-to-classes.jar
1479@echo "target Java: $(PRIVATE_MODULE) ($(PRIVATE_CLASS_INTERMEDIATES_DIR))"
1480$(call compile-java,$(TARGET_JAVAC),$(PRIVATE_BOOTCLASSPATH))
Joe Onorato64d85d02009-04-09 19:31:12 -07001481$(hide) rm -rf $(PRIVATE_CLASS_INTERMEDIATES_DIR)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001482endef
1483
Ying Wang015edd22011-01-20 15:01:56 -08001484# Override the above definitions if we want to do incremetal javac
1485ifeq (true, $(ENABLE_INCREMENTALJAVAC))
1486define compile-java
1487$(hide) mkdir -p $(dir $@)
1488$(hide) mkdir -p $(PRIVATE_CLASS_INTERMEDIATES_DIR)
1489$(hide) touch $(PRIVATE_CLASS_INTERMEDIATES_DIR)/newstamp
1490$(call unzip-jar-files,$(PRIVATE_STATIC_JAVA_LIBRARIES),$(PRIVATE_CLASS_INTERMEDIATES_DIR))
1491$(hide) if [ -e $(PRIVATE_CLASS_INTERMEDIATES_DIR)/stamp ] ; then \
1492 newerFlag=$$(echo -n "-newer $(PRIVATE_CLASS_INTERMEDIATES_DIR)/stamp") ; \
1493 fi ; \
1494 find $(PRIVATE_JAVA_SOURCES) $$newerFlag > $(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list ; \
1495 if [ -d "$(PRIVATE_SOURCE_INTERMEDIATES_DIR)" ]; then \
1496 find $(PRIVATE_SOURCE_INTERMEDIATES_DIR) -name '*.java' $$newerFlag >> $(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list; \
1497 fi
1498$(hide) tr ' ' '\n' < $(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list \
1499 | sort -u > $(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list-uniq
1500@echo "(Incremental) build source files:"
1501@cat $(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list-uniq
1502$(hide) if [ -s $(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list-uniq ] ; then \
Joe Onorato149dd912011-05-31 18:21:07 -07001503 $(1) -encoding UTF-8 \
Ying Wang015edd22011-01-20 15:01:56 -08001504 $(strip $(PRIVATE_JAVAC_DEBUG_FLAGS)) \
1505 $(if $(findstring true,$(LOCAL_WARNINGS_ENABLE)),$(xlint_unchecked),) \
1506 $(2) \
1507 $(addprefix -classpath ,$(strip \
1508 $(call normalize-path-list,$(PRIVATE_ALL_JAVA_LIBRARIES) $(PRIVATE_CLASS_INTERMEDIATES_DIR)))) \
1509 $(if $(findstring true,$(LOCAL_WARNINGS_ENABLE)),$(xlint_unchecked),) \
1510 -extdirs "" -d $(PRIVATE_CLASS_INTERMEDIATES_DIR) \
1511 $(PRIVATE_JAVACFLAGS) \
1512 \@$(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list-uniq \
1513 || ( exit 41 ) \
1514fi
1515$(hide) rm -f $(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list
1516$(hide) rm -f $(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list-uniq
1517$(hide) rm -f $@
1518$(hide) jar $(if $(strip $(PRIVATE_JAR_MANIFEST)),-cfm,-cf) \
1519 $@ $(PRIVATE_JAR_MANIFEST) -C $(PRIVATE_CLASS_INTERMEDIATES_DIR) .
1520$(hide) mv $(PRIVATE_CLASS_INTERMEDIATES_DIR)/newstamp $(PRIVATE_CLASS_INTERMEDIATES_DIR)/stamp
1521endef
1522
1523define transform-java-to-classes.jar
1524@echo "target Java: $(PRIVATE_MODULE) ($(PRIVATE_CLASS_INTERMEDIATES_DIR))"
1525$(call compile-java,$(TARGET_JAVAC),$(PRIVATE_BOOTCLASSPATH))
1526endef
1527endif # ENABLE_INCREMENTALJAVAC
1528
The Android Open Source Project88b60792009-03-03 19:28:42 -08001529define transform-classes.jar-to-emma
1530$(hide) java -classpath $(EMMA_JAR) emma instr -outmode fullcopy -outfile \
Guang Zhu155afe32010-03-10 15:48:03 -08001531 $(PRIVATE_EMMA_COVERAGE_FILE) -ip $< -d $(PRIVATE_EMMA_INTERMEDIATES_DIR) \
Guang Zhu9cd3d8c2010-06-15 13:31:25 -07001532 $(addprefix -ix , $(PRIVATE_EMMA_COVERAGE_FILTER))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001533endef
1534
1535#TODO: use a smaller -Xmx value for most libraries;
1536# only core.jar and framework.jar need a heap this big.
Raphaelf6ff4c52009-08-18 14:43:32 -07001537# 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 -08001538define transform-classes.jar-to-dex
1539@echo "target Dex: $(PRIVATE_MODULE)"
1540@mkdir -p $(dir $@)
Raphaelf6ff4c52009-08-18 14:43:32 -07001541$(hide) $(DX) \
Wink Saville29b3afa2012-01-30 15:30:10 -08001542 $(if $(findstring windows,$(HOST_OS)),,-JXms16M -JXmx2048M) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001543 --dex --output=$@ \
Brian Carlstrombb7c6d82011-04-01 15:45:58 -07001544 $(incremental_dex) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001545 $(if $(NO_OPTIMIZE_DX), \
1546 --no-optimize) \
1547 $(if $(GENERATE_DEX_DEBUG), \
1548 --debug --verbose \
1549 --dump-to=$(@:.dex=.lst) \
1550 --dump-width=1000) \
1551 $(PRIVATE_DX_FLAGS) \
1552 $<
1553endef
1554
1555# Create a mostly-empty .jar file that we'll add to later.
1556# The MacOS jar tool doesn't like creating empty jar files,
1557# so we need to give it something.
1558define create-empty-package
1559@mkdir -p $(dir $@)
1560$(hide) touch $(dir $@)/dummy
1561$(hide) (cd $(dir $@) && jar cf $(notdir $@) dummy)
1562$(hide) zip -qd $@ dummy
1563$(hide) rm $(dir $@)/dummy
1564endef
1565
1566#TODO: we kinda want to build different asset packages for
1567# different configurations, then combine them later (or something).
1568# Per-locale, etc.
1569# A list of dynamic and static parameters; build layers for
1570# dynamic params that lay over the static ones.
1571#TODO: update the manifest to point to the package file
Dianne Hackborn9bd54042009-05-15 18:01:20 -07001572#Note that the version numbers are given to aapt as simple default
1573#values; applications can override these by explicitly stating
1574#them in their manifest.
The Android Open Source Project88b60792009-03-03 19:28:42 -08001575define add-assets-to-package
Ying Wangc61d5932010-03-10 16:02:42 -08001576$(hide) $(AAPT) package -u $(PRIVATE_AAPT_FLAGS) \
Ying Wang4f1ab922011-03-15 13:19:30 -07001577 $(addprefix -c , $(PRIVATE_PRODUCT_AAPT_CONFIG)) \
Dianne Hackborna0f464a2011-10-14 19:37:57 -07001578 $(addprefix --preferred-configurations , $(PRIVATE_PRODUCT_AAPT_PREF_CONFIG)) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001579 $(addprefix -M , $(PRIVATE_ANDROID_MANIFEST)) \
1580 $(addprefix -S , $(PRIVATE_RESOURCE_DIR)) \
1581 $(addprefix -A , $(PRIVATE_ASSET_DIR)) \
1582 $(addprefix -I , $(PRIVATE_AAPT_INCLUDES)) \
Ying Wangbb9c2302011-04-08 17:27:35 -07001583 $(addprefix --min-sdk-version , $(PRIVATE_DEFAULT_APP_TARGET_SDK)) \
1584 $(addprefix --target-sdk-version , $(PRIVATE_DEFAULT_APP_TARGET_SDK)) \
Joe Onorato700b88e2010-10-05 17:33:58 -04001585 $(addprefix --product , $(TARGET_AAPT_CHARACTERISTICS)) \
Ying Wang1ae607a2010-06-23 13:34:22 -07001586 $(if $(filter --version-code,$(PRIVATE_AAPT_FLAGS)),,$(addprefix --version-code , $(PLATFORM_SDK_VERSION))) \
Ying Wang8f5069b2010-06-29 11:08:13 -07001587 $(if $(filter --version-name,$(PRIVATE_AAPT_FLAGS)),,$(addprefix --version-name , $(PLATFORM_VERSION)-$(BUILD_NUMBER))) \
Jeff Hamiltonbb67d212010-02-05 22:36:42 -06001588 $(addprefix --rename-manifest-package , $(PRIVATE_MANIFEST_PACKAGE_NAME)) \
Ying Wang3dae0ee2010-09-02 15:41:01 -07001589 $(addprefix --rename-instrumentation-target-package , $(PRIVATE_MANIFEST_INSTRUMENTATION_FOR)) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001590 -F $@
1591endef
1592
The Android Open Source Project88b60792009-03-03 19:28:42 -08001593define add-jni-shared-libs-to-package
1594$(hide) rm -rf $(dir $@)lib
Jack Palevicha0ab29b2010-06-18 15:38:07 +08001595$(hide) mkdir -p $(dir $@)lib/$(PRIVATE_JNI_SHARED_LIBRARIES_ABI)
1596$(hide) cp $(PRIVATE_JNI_SHARED_LIBRARIES) $(dir $@)lib/$(PRIVATE_JNI_SHARED_LIBRARIES_ABI)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001597$(hide) (cd $(dir $@) && zip -r $(notdir $@) lib)
1598$(hide) rm -rf $(dir $@)lib
1599endef
1600
The Android Open Source Project88b60792009-03-03 19:28:42 -08001601#TODO: update the manifest to point to the dex file
1602define add-dex-to-package
Ying Wang957fea52010-09-23 11:48:38 -07001603$(if $(filter classes.dex,$(notdir $(PRIVATE_DEX_FILE))),\
1604$(hide) $(AAPT) add -k $@ $(PRIVATE_DEX_FILE),\
Ying Wang6e7db382011-07-27 12:49:15 -07001605$(hide) _adtp_classes_dex=$(dir $(PRIVATE_DEX_FILE))classes.dex; \
1606cp $(PRIVATE_DEX_FILE) $$_adtp_classes_dex && \
1607$(AAPT) add -k $@ $$_adtp_classes_dex && rm -f $$_adtp_classes_dex)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001608endef
1609
1610define add-java-resources-to-package
Ying Wang194a8ec2011-06-06 14:34:52 -07001611$(call dump-words-to-file, $(PRIVATE_EXTRA_JAR_ARGS), $(dir $@)jar-arg-list)
1612$(hide) jar uf $@ @$(dir $@)jar-arg-list
1613@rm -f $(dir $@)jar-arg-list
The Android Open Source Project88b60792009-03-03 19:28:42 -08001614endef
1615
1616# Sign a package using the specified key/cert.
1617#
1618define sign-package
1619$(hide) mv $@ $@.unsigned
1620$(hide) java -jar $(SIGNAPK_JAR) \
1621 $(PRIVATE_CERTIFICATE) $(PRIVATE_PRIVATE_KEY) $@.unsigned $@.signed
1622$(hide) mv $@.signed $@
1623endef
1624
1625# Align STORED entries of a package on 4-byte boundaries
1626# to make them easier to mmap.
1627#
1628define align-package
1629$(hide) mv $@ $@.unaligned
1630$(hide) $(ZIPALIGN) -f 4 $@.unaligned $@.aligned
1631$(hide) mv $@.aligned $@
1632endef
1633
1634define install-dex-debug
1635$(hide) if [ -f "$(PRIVATE_INTERMEDIATES_DIR)/classes.dex" ]; then \
1636 mkdir -p $(TOP)/dalvik/DEBUG-FILES; \
1637 $(ACP) $(PRIVATE_INTERMEDIATES_DIR)/classes.dex \
1638 $(TOP)/dalvik/DEBUG-FILES/$(PRIVATE_MODULE).dex; \
1639 fi
1640$(hide) if [ -f "$(PRIVATE_INTERMEDIATES_DIR)/classes.lst" ]; then \
1641 mkdir -p $(TOP)/dalvik/DEBUG-FILES; \
1642 $(ACP) $(PRIVATE_INTERMEDIATES_DIR)/classes.lst \
1643 $(TOP)/dalvik/DEBUG-FILES/$(PRIVATE_MODULE).lst; \
1644 fi
1645endef
1646
1647# TODO(joeo): If we can ever upgrade to post 3.81 make and get the
1648# new prebuilt rules to work, we should change this to copy the
1649# resources to the out directory and then copy the resources.
1650
Brian Carlstrom78269512010-12-10 12:10:24 -08001651# Note: we intentionally don't clean PRIVATE_CLASS_INTERMEDIATES_DIR
1652# in transform-java-to-classes for the sake of vm-tests.
The Android Open Source Project88b60792009-03-03 19:28:42 -08001653define transform-host-java-to-package
1654@echo "host Java: $(PRIVATE_MODULE) ($(PRIVATE_CLASS_INTERMEDIATES_DIR))"
Ying Wang015edd22011-01-20 15:01:56 -08001655$(call compile-java,$(HOST_JAVAC),$(PRIVATE_BOOTCLASSPATH))
Ying Wang194a8ec2011-06-06 14:34:52 -07001656$(if $(PRIVATE_EXTRA_JAR_ARGS), $(call add-java-resources-to-package))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001657endef
1658
1659###########################################################
1660## Obfuscate a jar file
1661###########################################################
1662
1663# PRIVATE_KEEP_FILE is a file containing a list of classes
1664# PRIVATE_INTERMEDIATES_DIR is a directory we can use for temporary files
1665# The module using this must depend on
1666# $(HOST_OUT_JAVA_LIBRARIES)/proguard-4.0.1.jar
1667define obfuscate-jar
1668@echo "Obfuscate jar: $(notdir $@) ($@)"
1669@mkdir -p $(dir $@)
1670@rm -f $@
1671@mkdir -p $(PRIVATE_INTERMEDIATES_DIR)
1672$(hide) sed -e 's/^/-keep class /' < $(PRIVATE_KEEP_FILE) > \
1673 $(PRIVATE_INTERMEDIATES_DIR)/keep.pro
1674$(hide) java -Xmx512M -jar $(HOST_OUT_JAVA_LIBRARIES)/proguard-4.0.1.jar \
1675 -injars $< \
1676 -outjars $@ \
1677 -target 1.5 \
1678 -dontnote -dontwarn \
1679 -printmapping $(PRIVATE_INTERMEDIATES_DIR)/out.map \
1680 -forceprocessing \
1681 -renamesourcefileattribute SourceFile \
1682 -keepattributes Exceptions,InnerClasses,Signature,Deprecated,SourceFile,LineNumberTable,*Annotation*,EnclosingMethod \
1683 -repackageclasses \
1684 -keepclassmembers "class * { public protected *; }" \
1685 @$(PRIVATE_INTERMEDIATES_DIR)/keep.pro
1686endef
1687
1688###########################################################
1689## Commands for copying files
1690###########################################################
1691
1692# Define a rule to copy a header. Used via $(eval) by copy_headers.make.
1693# $(1): source header
1694# $(2): destination header
1695define copy-one-header
1696$(2): $(1)
1697 @echo "Header: $$@"
1698 $$(copy-file-to-new-target-with-cp)
1699endef
1700
1701# Define a rule to copy a file. For use via $(eval).
1702# $(1): source file
1703# $(2): destination file
1704define copy-one-file
1705$(2): $(1) | $(ACP)
1706 @echo "Copy: $$@"
1707 $$(copy-file-to-target)
1708endef
1709
Ying Wang3ceecfa2012-05-14 14:39:00 -07001710# Copy the file only if it's a well-formed xml file. For use via $(eval).
1711# $(1): source file
1712# $(2): destination file, must end with .xml.
1713define copy-xml-file-checked
1714$(2): $(1) | $(ACP)
1715 @echo "Copy xml: $$@"
1716 $(hide) xmllint $$< >/dev/null # Don't print the xml file to stdout.
1717 $$(copy-file-to-target)
1718endef
1719
The Android Open Source Project88b60792009-03-03 19:28:42 -08001720# The -t option to acp and the -p option to cp is
1721# required for OSX. OSX has a ridiculous restriction
1722# where it's an error for a .a file's modification time
1723# to disagree with an internal timestamp, and this
1724# macro is used to install .a files (among other things).
1725
1726# Copy a single file from one place to another,
1727# preserving permissions and overwriting any existing
1728# file.
Ying Wang84ed6fa2011-01-18 17:21:20 -08001729# We disable the "-t" option for acp can not handle
1730# high resolution timestamp correctly on file systems like ext4.
1731# Therefore copy-file-to-target is the same as copy-file-to-new-target.
The Android Open Source Project88b60792009-03-03 19:28:42 -08001732define copy-file-to-target
1733@mkdir -p $(dir $@)
Ying Wang84ed6fa2011-01-18 17:21:20 -08001734$(hide) $(ACP) -fp $< $@
The Android Open Source Project88b60792009-03-03 19:28:42 -08001735endef
1736
1737# The same as copy-file-to-target, but use the local
1738# cp command instead of acp.
1739define copy-file-to-target-with-cp
1740@mkdir -p $(dir $@)
1741$(hide) cp -fp $< $@
1742endef
1743
Dianne Hackborn9c0c4b72009-08-11 19:16:46 -07001744# The same as copy-file-to-target, but use the zipalign tool to do so.
1745define copy-file-to-target-with-zipalign
1746@mkdir -p $(dir $@)
1747$(hide) $(ZIPALIGN) -f 4 $< $@
1748endef
1749
Doug Zongker1046d202009-08-06 13:02:19 -07001750# The same as copy-file-to-target, but strip out "# comment"-style
1751# comments (for config files and such).
1752define copy-file-to-target-strip-comments
1753@mkdir -p $(dir $@)
1754$(hide) sed -e 's/#.*$$//' -e 's/[ \t]*$$//' -e '/^$$/d' < $< > $@
1755endef
1756
The Android Open Source Project88b60792009-03-03 19:28:42 -08001757# The same as copy-file-to-target, but don't preserve
1758# the old modification time.
1759define copy-file-to-new-target
1760@mkdir -p $(dir $@)
1761$(hide) $(ACP) -fp $< $@
1762endef
1763
1764# The same as copy-file-to-new-target, but use the local
1765# cp command instead of acp.
1766define copy-file-to-new-target-with-cp
1767@mkdir -p $(dir $@)
1768$(hide) cp -f $< $@
1769endef
1770
1771# Copy a prebuilt file to a target location.
1772define transform-prebuilt-to-target
1773@echo "$(if $(PRIVATE_IS_HOST_MODULE),host,target) Prebuilt: $(PRIVATE_MODULE) ($@)"
1774$(copy-file-to-target)
1775endef
1776
Dianne Hackborn9c0c4b72009-08-11 19:16:46 -07001777# Copy a prebuilt file to a target location, using zipalign on it.
1778define transform-prebuilt-to-target-with-zipalign
1779@echo "$(if $(PRIVATE_IS_HOST_MODULE),host,target) Prebuilt APK: $(PRIVATE_MODULE) ($@)"
1780$(copy-file-to-target-with-zipalign)
1781endef
1782
Doug Zongker1046d202009-08-06 13:02:19 -07001783# Copy a prebuilt file to a target location, stripping "# comment" comments.
1784define transform-prebuilt-to-target-strip-comments
1785@echo "$(if $(PRIVATE_IS_HOST_MODULE),host,target) Prebuilt: $(PRIVATE_MODULE) ($@)"
1786$(copy-file-to-target-strip-comments)
1787endef
1788
The Android Open Source Project88b60792009-03-03 19:28:42 -08001789###########################################################
1790## On some platforms (MacOS), after copying a static
1791## library, ranlib must be run to update an internal
1792## timestamp!?!?!
1793###########################################################
1794
1795ifeq ($(HOST_RUN_RANLIB_AFTER_COPYING),true)
1796define transform-host-ranlib-copy-hack
1797 $(hide) ranlib $@ || true
1798endef
1799else
1800define transform-host-ranlib-copy-hack
Patrick Scott0e27dff2010-05-07 08:37:11 -04001801@true
The Android Open Source Project88b60792009-03-03 19:28:42 -08001802endef
1803endif
1804
1805ifeq ($(TARGET_RUN_RANLIB_AFTER_COPYING),true)
1806define transform-ranlib-copy-hack
1807 $(hide) ranlib $@
1808endef
1809else
1810define transform-ranlib-copy-hack
Patrick Scott0e27dff2010-05-07 08:37:11 -04001811@true
The Android Open Source Project88b60792009-03-03 19:28:42 -08001812endef
1813endif
1814
1815
1816###########################################################
Ying Wang3b2bdf12010-02-01 09:51:23 -08001817## Commands to call Proguard
1818###########################################################
1819
1820# Command to copy the file with acp, if proguard is disabled.
1821define proguard-disabled-commands
1822@echo Copying: $@
Ying Wang84ed6fa2011-01-18 17:21:20 -08001823$(hide) $(ACP) -fp $< $@
Ying Wang3b2bdf12010-02-01 09:51:23 -08001824endef
1825
1826# Command to call Proguard
1827# $(1): extra flags for instrumentation.
1828define proguard-enabled-commands
1829@echo Proguard: $@
1830$(hide) $(PROGUARD) -injars $< -outjars $@ $(PRIVATE_PROGUARD_FLAGS) $(1)
1831endef
1832
1833# Figure out the proguard dictionary file of the module that is instrumentationed for.
1834define get-instrumentation-proguard-flags
1835$(if $(PRIVATE_INSTRUMENTATION_FOR),$(if $(ALL_MODULES.$(PRIVATE_INSTRUMENTATION_FOR).PROGUARD_ENABLED),-applymapping $(call intermediates-dir-for,APPS,$(PRIVATE_INSTRUMENTATION_FOR),,COMMON)/proguard_dictionary))
1836endef
1837
1838define transform-jar-to-proguard
1839$(eval _instrumentation_proguard_flags:=$(call get-instrumentation-proguard-flags))
1840$(eval _enable_proguard:=$(PRIVATE_PROGUARD_ENABLED)$(_instrumentation_proguard_flags))
1841$(if $(_enable_proguard),$(call proguard-enabled-commands,$(_instrumentation_proguard_flags)),$(call proguard-disabled-commands))
1842$(eval _instrumentation_proguard_flags:=)
1843$(eval _enable_proguard:=)
1844endef
1845
1846
1847###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -08001848## Stuff source generated from one-off tools
1849###########################################################
1850
1851define transform-generated-source
1852@echo "target Generated: $(PRIVATE_MODULE) <= $<"
1853@mkdir -p $(dir $@)
1854$(hide) $(PRIVATE_CUSTOM_TOOL)
1855endef
1856
1857
1858###########################################################
1859## Assertions about attributes of the target
1860###########################################################
1861
1862# $(1): The file to check
1863ifndef get-file-size
1864$(error HOST_OS must define get-file-size)
1865endif
1866
Doug Zongker4647f122009-07-02 09:00:54 -07001867# Convert a partition data size (eg, as reported in /proc/mtd) to the
1868# size of the image used to flash that partition (which includes a
Lars Svensson9cb8c282010-12-06 15:24:58 +01001869# spare area for each page).
Doug Zongker4647f122009-07-02 09:00:54 -07001870# $(1): the partition data size
1871define image-size-from-data-size
Ying Wang4a2ecaf2011-02-09 17:24:27 -08001872$(strip $(eval _isfds_value := $$(shell echo $$$$(($(1) / $(BOARD_NAND_PAGE_SIZE) * \
1873 ($(BOARD_NAND_PAGE_SIZE)+$(BOARD_NAND_SPARE_SIZE))))))\
1874$(if $(filter 0, $(_isfds_value)),$(shell echo $$(($(BOARD_NAND_PAGE_SIZE)+$(BOARD_NAND_SPARE_SIZE)))),$(_isfds_value))\
1875$(eval _isfds_value :=))
Doug Zongker4647f122009-07-02 09:00:54 -07001876endef
1877
1878# $(1): The file(s) to check (often $@)
1879# $(2): The maximum total image size, in decimal bytes
Doug Zongker6dd2ae02009-08-25 17:23:57 -07001880# $(3): the type of filesystem "yaffs" or "raw"
The Android Open Source Project88b60792009-03-03 19:28:42 -08001881#
1882# If $(2) is empty, evaluates to "true"
1883#
1884# Reserve bad blocks. Make sure that MAX(1% of partition size, 2 blocks)
1885# is left over after the image has been flashed. Round the 1% up to the
1886# next whole flash block size.
1887define assert-max-file-size
1888$(if $(2), \
Doug Zongker742fa572009-07-08 12:09:04 -07001889 size=$$(for i in $(1); do $(call get-file-size,$$i); echo +; done; echo 0); \
1890 total=$$(( $$( echo "$$size" ) )); \
Doug Zongker4647f122009-07-02 09:00:54 -07001891 printname=$$(echo -n "$(1)" | tr " " +); \
Doug Zongker4647f122009-07-02 09:00:54 -07001892 img_blocksize=$(call image-size-from-data-size,$(BOARD_FLASH_BLOCK_SIZE)); \
Doug Zongker6dd2ae02009-08-25 17:23:57 -07001893 if [ "$(3)" == "yaffs" ]; then \
Doug Zongker93d9ff42009-09-14 17:46:41 -07001894 reservedblocks=8; \
Doug Zongker6dd2ae02009-08-25 17:23:57 -07001895 else \
Doug Zongker4ac1ba62009-08-25 20:38:50 -07001896 reservedblocks=0; \
Doug Zongker6dd2ae02009-08-25 17:23:57 -07001897 fi; \
Doug Zongker4647f122009-07-02 09:00:54 -07001898 twoblocks=$$((img_blocksize * 2)); \
1899 onepct=$$((((($(2) / 100) - 1) / img_blocksize + 1) * img_blocksize)); \
Doug Zongker6dd2ae02009-08-25 17:23:57 -07001900 reserve=$$(((twoblocks > onepct ? twoblocks : onepct) + \
1901 reservedblocks * img_blocksize)); \
Doug Zongker4647f122009-07-02 09:00:54 -07001902 maxsize=$$(($(2) - reserve)); \
Ying Wang99bcbeb2011-12-02 10:34:45 -08001903 echo "$$printname maxsize=$$maxsize blocksize=$$img_blocksize total=$$total reserve=$$reserve"; \
Doug Zongker4647f122009-07-02 09:00:54 -07001904 if [ "$$total" -gt "$$maxsize" ]; then \
1905 echo "error: $$printname too large ($$total > [$(2) - $$reserve])"; \
1906 false; \
Doug Zongker742fa572009-07-08 12:09:04 -07001907 elif [ "$$total" -gt $$((maxsize - 32768)) ]; then \
Doug Zongker4647f122009-07-02 09:00:54 -07001908 echo "WARNING: $$printname approaching size limit ($$total now; limit $$maxsize)"; \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001909 fi \
1910 , \
1911 true \
1912 )
1913endef
1914
Doug Zongker8510a1e2009-08-07 16:38:08 -07001915# Like assert-max-file-size, but the second argument is a partition
1916# size, which we'll convert to a max image size before checking it
1917# against the files.
1918#
1919# $(1): The file(s) to check (often $@)
1920# $(2): The partition size.
1921define assert-max-image-size
1922$(if $(2), \
1923 $(call assert-max-file-size,$(1),$(call image-size-from-data-size,$(2))), \
1924 true)
1925endef
1926
Doug Zongkere01100c2009-06-19 17:12:18 -07001927
1928###########################################################
1929## Define device-specific radio files
1930###########################################################
1931
1932# Copy a radio image file to the output location, and add it to
1933# INSTALLED_RADIOIMAGE_TARGET.
1934# $(1): filename
1935define add-radio-file
Doug Zongker14833602010-02-02 13:12:04 -08001936 $(eval $(call add-radio-file-internal,$(1),$(notdir $(1))))
Doug Zongkere01100c2009-06-19 17:12:18 -07001937endef
1938define add-radio-file-internal
Doug Zongker14833602010-02-02 13:12:04 -08001939INSTALLED_RADIOIMAGE_TARGET += $$(PRODUCT_OUT)/$(2)
Doug Zongker14833602010-02-02 13:12:04 -08001940$$(PRODUCT_OUT)/$(2) : $$(LOCAL_PATH)/$(1) | $$(ACP)
Doug Zongkere01100c2009-06-19 17:12:18 -07001941 $$(transform-prebuilt-to-target)
1942endef
1943
Doug Zongker9296f092012-03-20 16:42:22 -07001944# Version of add-radio-file that also arranges for the version of the
1945# file to be checked against the contents of
1946# $(TARGET_BOARD_INFO_FILE).
1947# $(1): filename
1948# $(2): name of version variable in board-info (eg, "version-baseband")
1949define add-radio-file-checked
1950 $(eval $(call add-radio-file-checked-internal,$(1),$(notdir $(1)),$(2)))
1951endef
1952define add-radio-file-checked-internal
1953INSTALLED_RADIOIMAGE_TARGET += $$(PRODUCT_OUT)/$(2)
1954BOARD_INFO_CHECK += $(3):$(LOCAL_PATH)/$(1)
1955$$(PRODUCT_OUT)/$(2) : $$(LOCAL_PATH)/$(1) | $$(ACP)
1956 $$(transform-prebuilt-to-target)
1957endef
1958
Doug Zongkere01100c2009-06-19 17:12:18 -07001959
The Android Open Source Project88b60792009-03-03 19:28:42 -08001960###########################################################
Joe Onorato899e62a2010-02-04 17:37:21 -08001961# Override the package defined in $(1), setting the
1962# variables listed below differently.
1963#
1964# $(1): The makefile to override (relative to the source
1965# tree root)
1966# $(2): Old LOCAL_PACKAGE_NAME value.
1967# $(3): New LOCAL_PACKAGE_NAME value.
Ying Wang3dae0ee2010-09-02 15:41:01 -07001968# $(4): New LOCAL_MANIFEST_PACKAGE_NAME value.
1969# $(5): New LOCAL_CERTIFICATE value.
1970# $(6): New LOCAL_INSTRUMENTATION_FOR value.
1971# $(7): New LOCAL_MANIFEST_INSTRUMENTATION_FOR value.
Joe Onorato899e62a2010-02-04 17:37:21 -08001972#
1973# Note that LOCAL_PACKAGE_OVERRIDES is NOT cleared in
1974# clear_vars.mk.
1975###########################################################
1976define inherit-package
Ying Wang3dae0ee2010-09-02 15:41:01 -07001977 $(eval $(call inherit-package-internal,$(1),$(2),$(3),$(4),$(5),$(6),$(7)))
Joe Onorato899e62a2010-02-04 17:37:21 -08001978endef
1979
1980define inherit-package-internal
1981 LOCAL_PACKAGE_OVERRIDES \
Ying Wang3dae0ee2010-09-02 15:41:01 -07001982 := $(strip $(1))||$(strip $(2))||$(strip $(3))||$(strip $(4))||&&$(strip $(5))||&&$(strip $(6))||&&$(strip $(7)) $(LOCAL_PACKAGE_OVERRIDES)
Joe Onorato899e62a2010-02-04 17:37:21 -08001983 include $(1)
1984 LOCAL_PACKAGE_OVERRIDES \
1985 := $(wordlist 1,$(words $(LOCAL_PACKAGE_OVERRIDES)), $(LOCAL_PACKAGE_OVERRIDES))
1986endef
1987
1988# To be used with inherit-package above
1989# Evalutes to true if the package was overridden
1990define set-inherited-package-variables
1991$(strip $(call set-inherited-package-variables-internal))
1992endef
1993
1994define keep-or-override
1995$(eval $(1) := $(if $(2),$(2),$($(1))))
1996endef
1997
1998define set-inherited-package-variables-internal
1999 $(eval _o := $(subst ||, ,$(lastword $(LOCAL_PACKAGE_OVERRIDES))))
2000 $(eval _n := $(subst ||, ,$(firstword $(LOCAL_PACKAGE_OVERRIDES))))
2001 $(if $(filter $(word 2,$(_n)),$(LOCAL_PACKAGE_NAME)), \
2002 $(eval LOCAL_PACKAGE_NAME := $(word 3,$(_o))) \
2003 $(eval LOCAL_MANIFEST_PACKAGE_NAME := $(word 4,$(_o))) \
Ying Wang3dae0ee2010-09-02 15:41:01 -07002004 $(call keep-or-override,LOCAL_CERTIFICATE,$(patsubst &&%,%,$(word 5,$(_o)))) \
2005 $(call keep-or-override,LOCAL_INSTRUMENTATION_FOR,$(patsubst &&%,%,$(word 6,$(_o)))) \
2006 $(call keep-or-override,LOCAL_MANIFEST_INSTRUMENTATION_FOR,$(patsubst &&%,%,$(word 7,$(_o)))) \
Joe Onorato899e62a2010-02-04 17:37:21 -08002007 $(eval LOCAL_OVERRIDES_PACKAGES := $(sort $(LOCAL_OVERRIDES_PACKAGES) $(word 2,$(_o)))) \
2008 true \
2009 ,)
2010endef
2011
Ying Wang000e89a2012-04-30 15:48:27 -07002012###########################################################
2013## Expand a module name list with REQUIRED modules
2014###########################################################
2015# $(1): The variable name that holds the initial module name list.
2016# the variable will be modified to hold the expanded results.
2017# $(2): The initial module name list.
2018# Returns empty string (maybe with some whitespaces).
2019define expand-required-modules
2020$(eval _erm_new_modules := $(sort $(filter-out $($(1)),\
2021 $(foreach m,$(2),$(ALL_MODULES.$(m).REQUIRED)))))\
2022$(if $(_erm_new_modules),$(eval $(1) += $(_erm_new_modules))\
2023 $(call expand-required-modules,$(1),$(_erm_new_modules)))
2024endef
Joe Onorato899e62a2010-02-04 17:37:21 -08002025
2026###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -08002027## Other includes
2028###########################################################
2029
2030# -----------------------------------------------------------------
2031# Rules and functions to help copy important files to DIST_DIR
2032# when requested.
2033include $(BUILD_SYSTEM)/distdir.mk
2034
Jean-Baptiste Queru4074f232010-09-03 16:32:58 -07002035# -----------------------------------------------------------------
2036# The modules allowed to use a user tag
2037include $(BUILD_SYSTEM)/user_tags.mk
The Android Open Source Project88b60792009-03-03 19:28:42 -08002038
2039# broken:
2040# $(foreach file,$^,$(if $(findstring,.a,$(suffix $file)),-l$(file),$(file)))
2041
2042###########################################################
2043## Misc notes
2044###########################################################
2045
2046#DEPDIR = .deps
2047#df = $(DEPDIR)/$(*F)
2048
2049#SRCS = foo.c bar.c ...
2050
2051#%.o : %.c
2052# @$(MAKEDEPEND); \
2053# cp $(df).d $(df).P; \
2054# sed -e 's/#.*//' -e 's/^[^:]*: *//' -e 's/ *\\$$//' \
2055# -e '/^$$/ d' -e 's/$$/ :/' < $(df).d >> $(df).P; \
2056# rm -f $(df).d
2057# $(COMPILE.c) -o $@ $<
2058
2059#-include $(SRCS:%.c=$(DEPDIR)/%.P)
2060
2061
2062#%.o : %.c
2063# $(COMPILE.c) -MD -o $@ $<
2064# @cp $*.d $*.P; \
2065# sed -e 's/#.*//' -e 's/^[^:]*: *//' -e 's/ *\\$$//' \
2066# -e '/^$$/ d' -e 's/$$/ :/' < $*.d >> $*.P; \
2067# rm -f $*.d