blob: bb645b4e07df7f4bd287410234f452b5b0009151 [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
Ying Wangae25ec12012-06-19 10:40:37 -070084# Generated class file names for Android resource.
85# They are escaped and quoted so can be passed safely to a bash command.
86ANDROID_RESOURCE_GENERATED_CLASSES := 'R.class' 'R$$*.class' 'Manifest.class' 'Manifest$$*.class'
87
The Android Open Source Project88b60792009-03-03 19:28:42 -080088###########################################################
89## Debugging; prints a variable list to stdout
90###########################################################
91
92# $(1): variable name list, not variable values
93define print-vars
94$(foreach var,$(1), \
95 $(info $(var):) \
96 $(foreach word,$($(var)), \
97 $(info $(space)$(space)$(word)) \
98 ) \
99 )
100endef
101
102###########################################################
Joe Onorato64d85d02009-04-09 19:31:12 -0700103## Evaluates to true if the string contains the word true,
104## and empty otherwise
105## $(1): a var to test
106###########################################################
107
108define true-or-empty
109$(filter true, $(1))
110endef
111
112
113###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -0800114## Retrieve the directory of the current makefile
115###########################################################
116
117# Figure out where we are.
118define my-dir
Dave Bortb3926412009-05-19 16:12:22 -0700119$(strip \
Ying Wang68f1c772012-04-23 21:29:18 -0700120 $(eval LOCAL_MODULE_MAKEFILE := $$(lastword $$(MAKEFILE_LIST))) \
121 $(if $(filter $(CLEAR_VARS),$(LOCAL_MODULE_MAKEFILE)), \
Dave Bortb3926412009-05-19 16:12:22 -0700122 $(error LOCAL_PATH must be set before including $$(CLEAR_VARS)) \
123 , \
Ying Wang68f1c772012-04-23 21:29:18 -0700124 $(patsubst %/,%,$(dir $(LOCAL_MODULE_MAKEFILE))) \
Dave Bortb3926412009-05-19 16:12:22 -0700125 ) \
126 )
The Android Open Source Project88b60792009-03-03 19:28:42 -0800127endef
128
129###########################################################
130## Retrieve a list of all makefiles immediately below some directory
131###########################################################
132
133define all-makefiles-under
134$(wildcard $(1)/*/Android.mk)
135endef
136
137###########################################################
138## Look under a directory for makefiles that don't have parent
139## makefiles.
140###########################################################
141
142# $(1): directory to search under
143# Ignores $(1)/Android.mk
144define first-makefiles-under
Joe Onoratodc1a7282009-08-04 15:58:26 -0400145$(shell build/tools/findleaves.py --prune=out --prune=.repo --prune=.git \
146 --mindepth=2 $(1) Android.mk)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800147endef
148
149###########################################################
150## Retrieve a list of all makefiles immediately below your directory
151###########################################################
152
153define all-subdir-makefiles
154$(call all-makefiles-under,$(call my-dir))
155endef
156
157###########################################################
158## Look in the named list of directories for makefiles,
159## relative to the current directory.
160###########################################################
161
162# $(1): List of directories to look for under this directory
163define all-named-subdir-makefiles
Chih-Wei Huange73c4bb2011-01-16 18:31:29 +0800164$(wildcard $(addsuffix /Android.mk, $(addprefix $(call my-dir)/,$(1))))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800165endef
166
167###########################################################
168## Find all of the java files under the named directories.
169## Meant to be used like:
170## SRC_FILES := $(call all-java-files-under,src tests)
171###########################################################
172
173define all-java-files-under
174$(patsubst ./%,%, \
175 $(shell cd $(LOCAL_PATH) ; \
176 find $(1) -name "*.java" -and -not -name ".*") \
177 )
178endef
179
180###########################################################
181## Find all of the java files from here. Meant to be used like:
182## SRC_FILES := $(call all-subdir-java-files)
183###########################################################
184
185define all-subdir-java-files
186$(call all-java-files-under,.)
187endef
188
189###########################################################
190## Find all of the c files under the named directories.
191## Meant to be used like:
192## SRC_FILES := $(call all-c-files-under,src tests)
193###########################################################
194
195define all-c-files-under
196$(patsubst ./%,%, \
197 $(shell cd $(LOCAL_PATH) ; \
198 find $(1) -name "*.c" -and -not -name ".*") \
199 )
200endef
201
202###########################################################
203## Find all of the c files from here. Meant to be used like:
204## SRC_FILES := $(call all-subdir-c-files)
205###########################################################
206
207define all-subdir-c-files
208$(call all-c-files-under,.)
209endef
210
211###########################################################
212## Find all files named "I*.aidl" under the named directories,
213## which must be relative to $(LOCAL_PATH). The returned list
214## is relative to $(LOCAL_PATH).
215###########################################################
216
217define all-Iaidl-files-under
218$(patsubst ./%,%, \
219 $(shell cd $(LOCAL_PATH) ; \
220 find $(1) -name "I*.aidl" -and -not -name ".*") \
221 )
222endef
223
224###########################################################
225## Find all of the "I*.aidl" files under $(LOCAL_PATH).
226###########################################################
227
228define all-subdir-Iaidl-files
229$(call all-Iaidl-files-under,.)
230endef
231
232###########################################################
Bjorn Bringerta89c9902010-02-02 17:36:20 +0000233## Find all of the logtags files under the named directories.
234## Meant to be used like:
235## SRC_FILES := $(call all-logtags-files-under,src)
236###########################################################
237
238define all-logtags-files-under
239$(patsubst ./%,%, \
240 $(shell cd $(LOCAL_PATH) ; \
241 find $(1) -name "*.logtags" -and -not -name ".*") \
242 )
243endef
244
245###########################################################
Ying Wanga5fc87a2010-11-02 18:43:16 -0700246## Find all of the .proto files under the named directories.
247## Meant to be used like:
248## SRC_FILES := $(call all-proto-files-under,src)
249###########################################################
250
251define all-proto-files-under
252$(patsubst ./%,%, \
253 $(shell cd $(LOCAL_PATH) ; \
254 find $(1) -name "*.proto" -and -not -name ".*") \
255 )
256endef
257
258###########################################################
Ying Wang0bd59a02010-07-15 17:17:52 -0700259## Find all of the RenderScript files under the named directories.
260## Meant to be used like:
261## SRC_FILES := $(call all-renderscript-files-under,src)
262###########################################################
263
264define all-renderscript-files-under
265$(patsubst ./%,%, \
266 $(shell cd $(LOCAL_PATH) ; \
267 find $(1) -name "*.rs" -and -not -name ".*") \
268 )
269endef
270
271###########################################################
Jean-Baptiste Queru0a3cfdc2009-12-17 17:47:28 -0800272## Find all of the html files under the named directories.
273## Meant to be used like:
274## SRC_FILES := $(call all-html-files-under,src tests)
275###########################################################
276
277define all-html-files-under
278$(patsubst ./%,%, \
279 $(shell cd $(LOCAL_PATH) ; \
280 find $(1) -name "*.html" -and -not -name ".*") \
281 )
282endef
283
284###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -0800285## Find all of the html files from here. Meant to be used like:
286## SRC_FILES := $(call all-subdir-html-files)
287###########################################################
288
289define all-subdir-html-files
Jean-Baptiste Queru0a3cfdc2009-12-17 17:47:28 -0800290$(call all-html-files-under,.)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800291endef
292
293###########################################################
294## Find all of the files matching pattern
295## SRC_FILES := $(call find-subdir-files, <pattern>)
296###########################################################
297
298define find-subdir-files
299$(patsubst ./%,%,$(shell cd $(LOCAL_PATH) ; find $(1)))
300endef
301
302###########################################################
303# find the files in the subdirectory $1 of LOCAL_DIR
304# matching pattern $2, filtering out files $3
305# e.g.
306# SRC_FILES += $(call find-subdir-subdir-files, \
307# css, *.cpp, DontWantThis.cpp)
308###########################################################
309
310define find-subdir-subdir-files
311$(filter-out $(patsubst %,$(1)/%,$(3)),$(patsubst ./%,%,$(shell cd \
312 $(LOCAL_PATH) ; find $(1) -maxdepth 1 -name $(2))))
313endef
314
315###########################################################
316## Find all of the files matching pattern
317## SRC_FILES := $(call all-subdir-java-files)
318###########################################################
319
320define find-subdir-assets
321$(if $(1),$(patsubst ./%,%, \
Ying Wang6ab5d6a2011-08-10 16:05:51 -0700322 $(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 -0800323 $(warning Empty argument supplied to find-subdir-assets) \
324)
325endef
326
327###########################################################
328## Find various file types in a list of directories relative to $(LOCAL_PATH)
329###########################################################
330
331define find-other-java-files
332 $(call find-subdir-files,$(1) -name "*.java" -and -not -name ".*")
333endef
334
335define find-other-html-files
336 $(call find-subdir-files,$(1) -name "*.html" -and -not -name ".*")
337endef
338
339###########################################################
340## Scan through each directory of $(1) looking for files
341## that match $(2) using $(wildcard). Useful for seeing if
342## a given directory or one of its parents contains
343## a particular file. Returns the first match found,
344## starting furthest from the root.
345###########################################################
346
347define find-parent-file
348$(strip \
Ying Wanga67ce692011-03-03 13:29:38 -0800349 $(eval _fpf := $(wildcard $(foreach f, $(2), $(strip $(1))/$(f)))) \
The Android Open Source Project88b60792009-03-03 19:28:42 -0800350 $(if $(_fpf),$(_fpf), \
351 $(if $(filter-out ./ .,$(1)), \
352 $(call find-parent-file,$(patsubst %/,%,$(dir $(1))),$(2)) \
353 ) \
354 ) \
355)
356endef
357
358###########################################################
359## Function we can evaluate to introduce a dynamic dependency
360###########################################################
361
362define add-dependency
363$(1): $(2)
364endef
365
366###########################################################
367## Set up the dependencies for a prebuilt target
368## $(call add-prebuilt-file, srcfile, [targetclass])
369###########################################################
370
371define add-prebuilt-file
372 $(eval $(include-prebuilt))
373endef
374
375define include-prebuilt
376 include $$(CLEAR_VARS)
377 LOCAL_SRC_FILES := $(1)
378 LOCAL_BUILT_MODULE_STEM := $(1)
379 LOCAL_MODULE_SUFFIX := $$(suffix $(1))
380 LOCAL_MODULE := $$(basename $(1))
381 LOCAL_MODULE_CLASS := $(2)
382 include $$(BUILD_PREBUILT)
383endef
384
385###########################################################
386## do multiple prebuilts
387## $(call target class, files ...)
388###########################################################
389
390define add-prebuilt-files
391 $(foreach f,$(2),$(call add-prebuilt-file,$f,$(1)))
392endef
393
394
395
396###########################################################
397## The intermediates directory. Where object files go for
398## a given target. We could technically get away without
399## the "_intermediates" suffix on the directory, but it's
400## nice to be able to grep for that string to find out if
401## anyone's abusing the system.
402###########################################################
403
404# $(1): target class, like "APPS"
405# $(2): target name, like "NotePad"
406# $(3): if non-empty, this is a HOST target.
407# $(4): if non-empty, force the intermediates to be COMMON
408define intermediates-dir-for
409$(strip \
410 $(eval _idfClass := $(strip $(1))) \
411 $(if $(_idfClass),, \
412 $(error $(LOCAL_PATH): Class not defined in call to intermediates-dir-for)) \
413 $(eval _idfName := $(strip $(2))) \
414 $(if $(_idfName),, \
415 $(error $(LOCAL_PATH): Name not defined in call to intermediates-dir-for)) \
416 $(eval _idfPrefix := $(if $(strip $(3)),HOST,TARGET)) \
Ying Wanga83940f2010-09-24 18:09:04 -0700417 $(if $(filter $(_idfPrefix)-$(_idfClass),$(COMMON_MODULE_CLASSES))$(4), \
The Android Open Source Project88b60792009-03-03 19:28:42 -0800418 $(eval _idfIntBase := $($(_idfPrefix)_OUT_COMMON_INTERMEDIATES)) \
419 , \
420 $(eval _idfIntBase := $($(_idfPrefix)_OUT_INTERMEDIATES)) \
421 ) \
422 $(_idfIntBase)/$(_idfClass)/$(_idfName)_intermediates \
423)
424endef
425
426# Uses LOCAL_MODULE_CLASS, LOCAL_MODULE, and LOCAL_IS_HOST_MODULE
427# to determine the intermediates directory.
428#
429# $(1): if non-empty, force the intermediates to be COMMON
430define local-intermediates-dir
431$(strip \
432 $(if $(strip $(LOCAL_MODULE_CLASS)),, \
433 $(error $(LOCAL_PATH): LOCAL_MODULE_CLASS not defined before call to local-intermediates-dir)) \
434 $(if $(strip $(LOCAL_MODULE)),, \
435 $(error $(LOCAL_PATH): LOCAL_MODULE not defined before call to local-intermediates-dir)) \
436 $(call intermediates-dir-for,$(LOCAL_MODULE_CLASS),$(LOCAL_MODULE),$(LOCAL_IS_HOST_MODULE),$(1)) \
437)
438endef
439
440###########################################################
441## Convert "path/to/libXXX.so" to "-lXXX".
442## Any "path/to/libXXX.a" elements pass through unchanged.
443###########################################################
444
445define normalize-libraries
446$(foreach so,$(filter %.so,$(1)),-l$(patsubst lib%.so,%,$(notdir $(so))))\
447$(filter-out %.so,$(1))
448endef
449
450# TODO: change users to call the common version.
451define normalize-host-libraries
452$(call normalize-libraries,$(1))
453endef
454
455define normalize-target-libraries
456$(call normalize-libraries,$(1))
457endef
458
459###########################################################
460## Convert a list of short module names (e.g., "framework", "Browser")
461## into the list of files that are built for those modules.
462## NOTE: this won't return reliable results until after all
463## sub-makefiles have been included.
464## $(1): target list
465###########################################################
466
467define module-built-files
468$(foreach module,$(1),$(ALL_MODULES.$(module).BUILT))
469endef
470
471###########################################################
472## Convert a list of short modules names (e.g., "framework", "Browser")
473## into the list of files that are installed for those modules.
474## NOTE: this won't return reliable results until after all
475## sub-makefiles have been included.
476## $(1): target list
477###########################################################
478
479define module-installed-files
480$(foreach module,$(1),$(ALL_MODULES.$(module).INSTALLED))
481endef
482
483###########################################################
Joe Onorato64d85d02009-04-09 19:31:12 -0700484## Convert a list of short modules names (e.g., "framework", "Browser")
485## into the list of files that should be used when linking
486## against that module as a public API.
487## TODO: Allow this for more than JAVA_LIBRARIES modules
488## NOTE: this won't return reliable results until after all
489## sub-makefiles have been included.
490## $(1): target list
491###########################################################
492
493define module-stubs-files
494$(foreach module,$(1),$(ALL_MODULES.$(module).STUBS))
495endef
496
497###########################################################
498## Evaluates to the timestamp file for a doc module, which
499## is the dependency that should be used.
500## $(1): doc module
501###########################################################
502
503define doc-timestamp-for
504$(OUT_DOCS)/$(strip $(1))-timestamp
505endef
506
507
508###########################################################
Ying Wang912f8282010-09-28 17:27:56 -0700509## Convert "core ext framework" to "out/.../javalib.jar ..."
The Android Open Source Project88b60792009-03-03 19:28:42 -0800510## $(1): library list
511## $(2): Non-empty if IS_HOST_MODULE
512###########################################################
513
514# $(1): library name
515# $(2): Non-empty if IS_HOST_MODULE
516define _java-lib-dir
517$(call intermediates-dir-for, \
Ying Wang912f8282010-09-28 17:27:56 -0700518 JAVA_LIBRARIES,$(1),$(2),COMMON)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800519endef
520
521# $(1): library name
522# $(2): Non-empty if IS_HOST_MODULE
523define _java-lib-full-classes.jar
Ying Wang912f8282010-09-28 17:27:56 -0700524$(call _java-lib-dir,$(1),$(2))/classes$(COMMON_JAVA_PACKAGE_SUFFIX)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800525endef
526
527# $(1): library name list
528# $(2): Non-empty if IS_HOST_MODULE
529define java-lib-files
530$(foreach lib,$(1),$(call _java-lib-full-classes.jar,$(lib),$(2)))
531endef
532
533# $(1): library name
The Android Open Source Project88b60792009-03-03 19:28:42 -0800534# $(2): Non-empty if IS_HOST_MODULE
535define _java-lib-full-dep
Ying Wang912f8282010-09-28 17:27:56 -0700536$(call _java-lib-dir,$(1),$(2))/javalib$(COMMON_JAVA_PACKAGE_SUFFIX)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800537endef
538
539# $(1): library name list
540# $(2): Non-empty if IS_HOST_MODULE
541define java-lib-deps
542$(foreach lib,$(1),$(call _java-lib-full-dep,$(lib),$(2)))
543endef
544
545###########################################################
Joe Onorato8dc8faa2010-09-14 13:09:48 -0400546## Run rot13 on a string
547## $(1): the string. Must be one line.
548###########################################################
549define rot13
550$(shell echo $(1) | tr 'a-zA-Z' 'n-za-mN-ZA-M')
551endef
552
553
554###########################################################
555## Returns true if $(1) and $(2) are equal. Returns
556## the empty string if they are not equal.
557###########################################################
558define streq
559$(strip $(if $(strip $(1)),\
560 $(if $(strip $(2)),\
561 $(if $(filter-out __,_$(subst $(strip $(1)),,$(strip $(2)))$(subst $(strip $(2)),,$(strip $(1)))_),,true), \
562 ),\
563 $(if $(strip $(2)),\
564 ,\
565 true)\
566 ))
567endef
568
569###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -0800570## Convert "a b c" into "a:b:c"
571###########################################################
572
573empty :=
574space := $(empty) $(empty)
575
576define normalize-path-list
577$(subst $(space),:,$(strip $(1)))
578endef
579
580###########################################################
Joe Onorato64d85d02009-04-09 19:31:12 -0700581## Read the word out of a colon-separated list of words.
582## This has the same behavior as the built-in function
583## $(word n,str).
584##
585## The individual words may not contain spaces.
586##
587## $(1): 1 based index
588## $(2): value of the form a:b:c...
589###########################################################
590
591define word-colon
592$(word $(1),$(subst :,$(space),$(2)))
593endef
594
595###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -0800596## Convert "a=b c= d e = f" into "a=b c=d e=f"
597##
598## $(1): list to collapse
599## $(2): if set, separator word; usually "=", ":", or ":="
600## Defaults to "=" if not set.
601###########################################################
602
603define collapse-pairs
604$(eval _cpSEP := $(strip $(if $(2),$(2),=)))\
605$(subst $(space)$(_cpSEP)$(space),$(_cpSEP),$(strip \
606 $(subst $(_cpSEP), $(_cpSEP) ,$(1))))
607endef
608
The Android Open Source Project88b60792009-03-03 19:28:42 -0800609###########################################################
Ying Wang7e8d4422011-06-17 17:05:35 -0700610## Given a list of pairs, if multiple pairs have the same
611## first components, keep only the first pair.
612##
613## $(1): list of pairs
614## $(2): the separator word, such as ":", "=", etc.
615define uniq-pairs-by-first-component
616$(eval _upbfc_fc_set :=)\
617$(strip $(foreach w,$(1), $(eval _first := $(word 1,$(subst $(2),$(space),$(w))))\
618 $(if $(filter $(_upbfc_fc_set),$(_first)),,$(w)\
619 $(eval _upbfc_fc_set += $(_first)))))\
620$(eval _upbfc_fc_set :=)\
621$(eval _first:=)
622endef
623
624###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -0800625## MODULE_TAG set operations
626###########################################################
627
628# Given a list of tags, return the targets that specify
629# any of those tags.
630# $(1): tag list
631define modules-for-tag-list
632$(sort $(foreach tag,$(1),$(ALL_MODULE_TAGS.$(tag))))
633endef
634
635# Same as modules-for-tag-list, but operates on
636# ALL_MODULE_NAME_TAGS.
637# $(1): tag list
638define module-names-for-tag-list
639$(sort $(foreach tag,$(1),$(ALL_MODULE_NAME_TAGS.$(tag))))
640endef
641
642# Given an accept and reject list, find the matching
643# set of targets. If a target has multiple tags and
644# any of them are rejected, the target is rejected.
645# Reject overrides accept.
646# $(1): list of tags to accept
647# $(2): list of tags to reject
648#TODO(dbort): do $(if $(strip $(1)),$(1),$(ALL_MODULE_TAGS))
Jean-Baptiste Queru75127b72010-01-07 11:44:22 -0800649#TODO(jbq): as of 20100106 nobody uses the second parameter
The Android Open Source Project88b60792009-03-03 19:28:42 -0800650define get-tagged-modules
651$(filter-out \
652 $(call modules-for-tag-list,$(2)), \
653 $(call modules-for-tag-list,$(1)))
654endef
655
Joe Onorato64d85d02009-04-09 19:31:12 -0700656###########################################################
657## Append a leaf to a base path. Properly deals with
658## base paths ending in /.
659##
660## $(1): base path
661## $(2): leaf path
662###########################################################
663
664define append-path
665$(subst //,/,$(1)/$(2))
666endef
667
The Android Open Source Project88b60792009-03-03 19:28:42 -0800668
669###########################################################
670## Package filtering
671###########################################################
672
673# Given a list of installed modules (short or long names)
674# return a list of the packages (yes, .apk packages, not
675# modules in general) that are overridden by this list and,
676# therefore, should not be installed.
677# $(1): mixed list of installed modules
678# TODO: This is fragile; find a reliable way to get this information.
679define _get-package-overrides
680 $(eval ### Discard any words containing slashes, unless they end in .apk, \
681 ### in which case trim off the directory component and the suffix. \
682 ### If there are no slashes, keep the entire word.)
683 $(eval _gpo_names := $(subst /,@@@ @@@,$(1)))
684 $(eval _gpo_names := \
685 $(filter %.apk,$(_gpo_names)) \
686 $(filter-out %@@@ @@@%,$(_gpo_names)))
687 $(eval _gpo_names := $(patsubst %.apk,%,$(_gpo_names)))
688 $(eval _gpo_names := $(patsubst @@@%,%,$(_gpo_names)))
689
690 $(eval ### Remove any remaining words that contain dots.)
691 $(eval _gpo_names := $(subst .,@@@ @@@,$(_gpo_names)))
692 $(eval _gpo_names := $(filter-out %@@@ @@@%,$(_gpo_names)))
693
694 $(eval ### Now we have a list of any words that could possibly refer to \
695 ### packages, although there may be words that do not. Only \
696 ### real packages will be present under PACKAGES.*, though.)
697 $(foreach _gpo_name,$(_gpo_names),$(PACKAGES.$(_gpo_name).OVERRIDES))
698endef
699
700define get-package-overrides
Conley Owensd7a1a9b2011-12-22 09:46:19 -0800701$(sort $(strip $(call _get-package-overrides,$(1))))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800702endef
703
704###########################################################
705## Output the command lines, or not
706###########################################################
707
708ifeq ($(strip $(SHOW_COMMANDS)),)
709define pretty
710@echo $1
711endef
712hide := @
713else
714define pretty
715endef
716hide :=
717endif
718
719###########################################################
720## Dump the variables that are associated with targets
721###########################################################
722
723define dump-module-variables
724@echo all_dependencies=$^
725@echo PRIVATE_YACCFLAGS=$(PRIVATE_YACCFLAGS);
726@echo PRIVATE_CFLAGS=$(PRIVATE_CFLAGS);
727@echo PRIVATE_CPPFLAGS=$(PRIVATE_CPPFLAGS);
728@echo PRIVATE_DEBUG_CFLAGS=$(PRIVATE_DEBUG_CFLAGS);
729@echo PRIVATE_C_INCLUDES=$(PRIVATE_C_INCLUDES);
730@echo PRIVATE_LDFLAGS=$(PRIVATE_LDFLAGS);
731@echo PRIVATE_LDLIBS=$(PRIVATE_LDLIBS);
732@echo PRIVATE_ARFLAGS=$(PRIVATE_ARFLAGS);
733@echo PRIVATE_AAPT_FLAGS=$(PRIVATE_AAPT_FLAGS);
734@echo PRIVATE_DX_FLAGS=$(PRIVATE_DX_FLAGS);
Brian Carlstromf184a0f2010-02-01 11:13:32 -0800735@echo PRIVATE_JAVACFLAGS=$(PRIVATE_JAVACFLAGS);
The Android Open Source Project88b60792009-03-03 19:28:42 -0800736@echo PRIVATE_JAVA_LIBRARIES=$(PRIVATE_JAVA_LIBRARIES);
737@echo PRIVATE_ALL_SHARED_LIBRARIES=$(PRIVATE_ALL_SHARED_LIBRARIES);
738@echo PRIVATE_ALL_STATIC_LIBRARIES=$(PRIVATE_ALL_STATIC_LIBRARIES);
739@echo PRIVATE_ALL_WHOLE_STATIC_LIBRARIES=$(PRIVATE_ALL_WHOLE_STATIC_LIBRARIES);
740@echo PRIVATE_ALL_OBJECTS=$(PRIVATE_ALL_OBJECTS);
Jeff Brown703e7c62011-02-04 20:15:00 -0800741@echo PRIVATE_NO_CRT=$(PRIVATE_NO_CRT);
The Android Open Source Project88b60792009-03-03 19:28:42 -0800742endef
743
744###########################################################
745## Commands for using sed to replace given variable values
746###########################################################
747
748define transform-variables
749@mkdir -p $(dir $@)
750@echo "Sed: $(if $(PRIVATE_MODULE),$(PRIVATE_MODULE),$@) <= $<"
751$(hide) sed $(foreach var,$(REPLACE_VARS),-e "s/{{$(var)}}/$(subst /,\/,$(PWD)/$($(var)))/g") $< >$@
752$(hide) if [ "$(suffix $@)" = ".sh" ]; then chmod a+rx $@; fi
753endef
754
755
756###########################################################
757## Commands for munging the dependency files GCC generates
758###########################################################
759
760define transform-d-to-p
Ying Wang3a7e4cc2011-01-28 14:14:47 -0800761$(hide) cp $(@:%.o=%.d) $(@:%.o=%.P); \
The Android Open Source Project88b60792009-03-03 19:28:42 -0800762 sed -e 's/#.*//' -e 's/^[^:]*: *//' -e 's/ *\\$$//' \
763 -e '/^$$/ d' -e 's/$$/ :/' < $(@:%.o=%.d) >> $(@:%.o=%.P); \
764 rm -f $(@:%.o=%.d)
765endef
766
767###########################################################
768## Commands for running lex
769###########################################################
770
771define transform-l-to-cpp
772@mkdir -p $(dir $@)
773@echo "Lex: $(PRIVATE_MODULE) <= $<"
774$(hide) $(LEX) -o$@ $<
775endef
776
777###########################################################
778## Commands for running yacc
779##
780## Because the extension of c++ files can change, the
781## extension must be specified in $1.
782## E.g, "$(call transform-y-to-cpp,.cpp)"
783###########################################################
784
785define transform-y-to-cpp
786@mkdir -p $(dir $@)
787@echo "Yacc: $(PRIVATE_MODULE) <= $<"
788$(YACC) $(PRIVATE_YACCFLAGS) -o $@ $<
789touch $(@:$1=$(YACC_HEADER_SUFFIX))
790echo '#ifndef '$(@F:$1=_h) > $(@:$1=.h)
791echo '#define '$(@F:$1=_h) >> $(@:$1=.h)
792cat $(@:$1=$(YACC_HEADER_SUFFIX)) >> $(@:$1=.h)
793echo '#endif' >> $(@:$1=.h)
794rm -f $(@:$1=$(YACC_HEADER_SUFFIX))
795endef
796
Ying Wang0bd59a02010-07-15 17:17:52 -0700797###########################################################
798## Commands to compile RenderScript
799###########################################################
Ying Wang0bd59a02010-07-15 17:17:52 -0700800
801define transform-renderscripts-to-java-and-bc
802@echo "RenderScript: $(PRIVATE_MODULE) <= $(PRIVATE_RS_SOURCE_FILES)"
803$(hide) rm -rf $(PRIVATE_RS_OUTPUT_DIR)
804$(hide) mkdir -p $(PRIVATE_RS_OUTPUT_DIR)/res/raw
805$(hide) mkdir -p $(PRIVATE_RS_OUTPUT_DIR)/src
Ying Wang7d83ef82011-05-25 17:16:22 -0700806$(hide) $(PRIVATE_RS_CC) \
Ying Wangebfddaa2010-07-30 18:37:29 -0700807 -o $(PRIVATE_RS_OUTPUT_DIR)/res/raw \
808 -p $(PRIVATE_RS_OUTPUT_DIR)/src \
Ying Wang24e1c012010-10-07 18:57:57 -0700809 -d $(PRIVATE_RS_OUTPUT_DIR) \
810 -a $@ -MD \
Stephen Hinesc963eae2011-08-10 13:53:05 -0700811 $(addprefix -target-api , $(PRIVATE_RS_TARGET_API)) \
Stephen Hines914f7a22011-12-06 18:43:24 -0800812 $(PRIVATE_RS_FLAGS) \
Ying Wang51280272010-09-01 13:28:52 -0700813 $(foreach inc,$(PRIVATE_RS_INCLUDES),$(addprefix -I , $(inc))) \
Ying Wangebfddaa2010-07-30 18:37:29 -0700814 $(PRIVATE_RS_SOURCE_FILES)
Shih-wei Liaoc6560302010-10-23 03:07:13 -0700815#$(hide) $(LLVM_RS_LINK) \
816# $(PRIVATE_RS_OUTPUT_DIR)/res/raw/*.bc
Ying Wang0bd59a02010-07-15 17:17:52 -0700817$(hide) mkdir -p $(dir $@)
818$(hide) touch $@
819endef
820
The Android Open Source Project88b60792009-03-03 19:28:42 -0800821
822###########################################################
823## Commands for running aidl
824###########################################################
825
826define transform-aidl-to-java
827@mkdir -p $(dir $@)
828@echo "Aidl: $(PRIVATE_MODULE) <= $<"
829$(hide) $(AIDL) -d$(patsubst %.java,%.P,$@) $(PRIVATE_AIDL_FLAGS) $< $@
830endef
831#$(AIDL) $(PRIVATE_AIDL_FLAGS) $< - | indent -nut -br -npcs -l1000 > $@
832
833
Doug Zongker9bd49622009-11-30 14:28:59 -0800834###########################################################
835## Commands for running java-event-log-tags.py
836###########################################################
837
838define transform-logtags-to-java
839@mkdir -p $(dir $@)
840@echo "logtags: $@ <= $<"
Doug Zongkerabfbbe22010-02-16 14:32:08 -0800841$(hide) $(JAVATAGS) -o $@ $^
Doug Zongker9bd49622009-11-30 14:28:59 -0800842endef
843
The Android Open Source Project88b60792009-03-03 19:28:42 -0800844
845###########################################################
Ying Wanga5fc87a2010-11-02 18:43:16 -0700846## Commands for running protoc to compile .proto into .java
847###########################################################
848
849define transform-proto-to-java
850@mkdir -p $(dir $@)
851@echo "Protoc: $@ <= $(PRIVATE_PROTO_SRC_FILES)"
852@rm -rf $(PRIVATE_PROTO_JAVA_OUTPUT_DIR)
853@mkdir -p $(PRIVATE_PROTO_JAVA_OUTPUT_DIR)
Bjorn Bringert20f5efd2011-10-18 16:08:27 +0100854$(hide) for f in $(PRIVATE_PROTO_SRC_FILES); do \
855 $(PROTOC) \
856 $(addprefix --proto_path=, $(PRIVATE_PROTO_INCLUDES)) \
857 $(PRIVATE_PROTO_JAVA_OUTPUT_OPTION)=$(PRIVATE_PROTO_JAVA_OUTPUT_DIR) \
858 $(PRIVATE_PROTOC_FLAGS) \
Ying Wang707328a2012-01-30 11:56:07 -0800859 $$f || exit 33; \
Bjorn Bringert20f5efd2011-10-18 16:08:27 +0100860 done
Ying Wanga5fc87a2010-11-02 18:43:16 -0700861$(hide) touch $@
862endef
863
864######################################################################
865## Commands for running protoc to compile .proto into .pb.cc and .pb.h
866######################################################################
867define transform-proto-to-cc
868@mkdir -p $(dir $@)
869@echo "Protoc: $@ <= $<"
870$(hide) $(PROTOC) \
871 $(addprefix --proto_path=, $(PRIVATE_PROTO_INCLUDES)) \
Ying Wang33c0d952010-11-05 11:30:58 -0700872 $(PRIVATE_PROTOC_FLAGS) \
Ying Wanga5fc87a2010-11-02 18:43:16 -0700873 --cpp_out=$(PRIVATE_PROTO_CC_OUTPUT_DIR) $<
874endef
875
876
877###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -0800878## Commands for running gcc to compile a C++ file
879###########################################################
880
881define transform-cpp-to-o
882@mkdir -p $(dir $@)
883@echo "target $(PRIVATE_ARM_MODE) C++: $(PRIVATE_MODULE) <= $<"
884$(hide) $(PRIVATE_CXX) \
Ying Wangddbcad82011-04-18 11:45:44 -0700885 $(addprefix -I , $(PRIVATE_C_INCLUDES)) \
Andrew Boie85f3b212012-07-11 12:14:56 -0700886 $(shell cat $(PRIVATE_IMPORT_INCLUDES)) \
Ying Wang4761e562011-04-12 11:06:35 -0700887 $(addprefix -isystem ,\
888 $(if $(PRIVATE_NO_DEFAULT_COMPILER_FLAGS),, \
889 $(filter-out $(PRIVATE_C_INCLUDES), \
Ying Wangddbcad82011-04-18 11:45:44 -0700890 $(PRIVATE_TARGET_PROJECT_INCLUDES) \
Ying Wang4761e562011-04-12 11:06:35 -0700891 $(PRIVATE_TARGET_C_INCLUDES)))) \
The Android Open Source Project88b60792009-03-03 19:28:42 -0800892 -c \
893 $(if $(PRIVATE_NO_DEFAULT_COMPILER_FLAGS),, \
Ying Wang1a081002010-07-13 14:55:47 -0700894 $(PRIVATE_TARGET_GLOBAL_CFLAGS) \
895 $(PRIVATE_TARGET_GLOBAL_CPPFLAGS) \
The Android Open Source Project88b60792009-03-03 19:28:42 -0800896 $(PRIVATE_ARM_CFLAGS) \
897 ) \
Doug Kwan9a8ecf92011-05-10 21:50:58 -0700898 $(PRIVATE_RTTI_FLAG) \
The Android Open Source Project88b60792009-03-03 19:28:42 -0800899 $(PRIVATE_CFLAGS) \
900 $(PRIVATE_CPPFLAGS) \
901 $(PRIVATE_DEBUG_CFLAGS) \
Atte Peltomaki60fe9632011-12-21 09:24:09 -0800902 -MD -MF $(patsubst %.o,%.d,$@) -o $@ $<
Ying Wang3a7e4cc2011-01-28 14:14:47 -0800903$(transform-d-to-p)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800904endef
905
906
907###########################################################
908## Commands for running gcc to compile a C file
909###########################################################
910
911# $(1): extra flags
912define transform-c-or-s-to-o-no-deps
913@mkdir -p $(dir $@)
914$(hide) $(PRIVATE_CC) \
Ying Wangddbcad82011-04-18 11:45:44 -0700915 $(addprefix -I , $(PRIVATE_C_INCLUDES)) \
Andrew Boie85f3b212012-07-11 12:14:56 -0700916 $(shell cat $(PRIVATE_IMPORT_INCLUDES)) \
Ying Wang4761e562011-04-12 11:06:35 -0700917 $(addprefix -isystem ,\
918 $(if $(PRIVATE_NO_DEFAULT_COMPILER_FLAGS),, \
919 $(filter-out $(PRIVATE_C_INCLUDES), \
Ying Wangddbcad82011-04-18 11:45:44 -0700920 $(PRIVATE_TARGET_PROJECT_INCLUDES) \
Ying Wang4761e562011-04-12 11:06:35 -0700921 $(PRIVATE_TARGET_C_INCLUDES)))) \
The Android Open Source Project88b60792009-03-03 19:28:42 -0800922 -c \
923 $(if $(PRIVATE_NO_DEFAULT_COMPILER_FLAGS),, \
Ying Wang1a081002010-07-13 14:55:47 -0700924 $(PRIVATE_TARGET_GLOBAL_CFLAGS) \
The Android Open Source Project88b60792009-03-03 19:28:42 -0800925 $(PRIVATE_ARM_CFLAGS) \
926 ) \
927 $(PRIVATE_CFLAGS) \
928 $(1) \
929 $(PRIVATE_DEBUG_CFLAGS) \
Atte Peltomaki60fe9632011-12-21 09:24:09 -0800930 -MD -MF $(patsubst %.o,%.d,$@) -o $@ $<
The Android Open Source Project88b60792009-03-03 19:28:42 -0800931endef
932
933define transform-c-to-o-no-deps
934@echo "target $(PRIVATE_ARM_MODE) C: $(PRIVATE_MODULE) <= $<"
935$(call transform-c-or-s-to-o-no-deps, )
936endef
937
938define transform-s-to-o-no-deps
939@echo "target asm: $(PRIVATE_MODULE) <= $<"
940$(call transform-c-or-s-to-o-no-deps, $(PRIVATE_ASFLAGS))
941endef
942
943define transform-c-to-o
944$(transform-c-to-o-no-deps)
Ying Wang3a7e4cc2011-01-28 14:14:47 -0800945$(transform-d-to-p)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800946endef
947
948define transform-s-to-o
949$(transform-s-to-o-no-deps)
Ying Wang3a7e4cc2011-01-28 14:14:47 -0800950$(transform-d-to-p)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800951endef
952
953###########################################################
David 'Digit' Turner5dbb5292009-05-14 16:00:09 +0200954## Commands for running gcc to compile an Objective-C file
955## This should never happen for target builds but this
956## will error at build time.
957###########################################################
958
959define transform-m-to-o-no-deps
960@echo "target ObjC: $(PRIVATE_MODULE) <= $<"
961$(call transform-c-or-s-to-o-no-deps)
962endef
963
964define transform-m-to-o
965$(transform-m-to-o-no-deps)
Ying Wang3a7e4cc2011-01-28 14:14:47 -0800966$(transform-d-to-p)
David 'Digit' Turner5dbb5292009-05-14 16:00:09 +0200967endef
968
969###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -0800970## Commands for running gcc to compile a host C++ file
971###########################################################
972
973define transform-host-cpp-to-o
974@mkdir -p $(dir $@)
975@echo "host C++: $(PRIVATE_MODULE) <= $<"
976$(hide) $(PRIVATE_CXX) \
Ying Wangddbcad82011-04-18 11:45:44 -0700977 $(addprefix -I , $(PRIVATE_C_INCLUDES)) \
Andrew Boie85f3b212012-07-11 12:14:56 -0700978 $(shell cat $(PRIVATE_IMPORT_INCLUDES)) \
Ying Wangddbcad82011-04-18 11:45:44 -0700979 $(addprefix -isystem ,\
The Android Open Source Project88b60792009-03-03 19:28:42 -0800980 $(if $(PRIVATE_NO_DEFAULT_COMPILER_FLAGS),, \
Ying Wangddbcad82011-04-18 11:45:44 -0700981 $(filter-out $(PRIVATE_C_INCLUDES), \
982 $(HOST_PROJECT_INCLUDES) \
983 $(HOST_C_INCLUDES)))) \
The Android Open Source Project88b60792009-03-03 19:28:42 -0800984 -c \
985 $(if $(PRIVATE_NO_DEFAULT_COMPILER_FLAGS),, \
986 $(HOST_GLOBAL_CFLAGS) \
987 $(HOST_GLOBAL_CPPFLAGS) \
988 ) \
989 $(PRIVATE_CFLAGS) \
990 $(PRIVATE_CPPFLAGS) \
991 $(PRIVATE_DEBUG_CFLAGS) \
Atte Peltomaki60fe9632011-12-21 09:24:09 -0800992 -MD -MF $(patsubst %.o,%.d,$@) -o $@ $<
The Android Open Source Project88b60792009-03-03 19:28:42 -0800993$(transform-d-to-p)
994endef
995
996
997###########################################################
998## Commands for running gcc to compile a host C file
999###########################################################
1000
1001# $(1): extra flags
1002define transform-host-c-or-s-to-o-no-deps
1003@mkdir -p $(dir $@)
1004$(hide) $(PRIVATE_CC) \
Ying Wangddbcad82011-04-18 11:45:44 -07001005 $(addprefix -I , $(PRIVATE_C_INCLUDES)) \
Andrew Boie85f3b212012-07-11 12:14:56 -07001006 $(shell cat $(PRIVATE_IMPORT_INCLUDES)) \
Ying Wangddbcad82011-04-18 11:45:44 -07001007 $(addprefix -isystem ,\
The Android Open Source Project88b60792009-03-03 19:28:42 -08001008 $(if $(PRIVATE_NO_DEFAULT_COMPILER_FLAGS),, \
Ying Wangddbcad82011-04-18 11:45:44 -07001009 $(filter-out $(PRIVATE_C_INCLUDES), \
1010 $(HOST_PROJECT_INCLUDES) \
1011 $(HOST_C_INCLUDES)))) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001012 -c \
1013 $(if $(PRIVATE_NO_DEFAULT_COMPILER_FLAGS),, \
1014 $(HOST_GLOBAL_CFLAGS) \
1015 ) \
1016 $(PRIVATE_CFLAGS) \
1017 $(1) \
1018 $(PRIVATE_DEBUG_CFLAGS) \
Atte Peltomaki60fe9632011-12-21 09:24:09 -08001019 -MD -MF $(patsubst %.o,%.d,$@) -o $@ $<
The Android Open Source Project88b60792009-03-03 19:28:42 -08001020endef
1021
1022define transform-host-c-to-o-no-deps
1023@echo "host C: $(PRIVATE_MODULE) <= $<"
1024$(call transform-host-c-or-s-to-o-no-deps, )
1025endef
1026
1027define transform-host-s-to-o-no-deps
1028@echo "host asm: $(PRIVATE_MODULE) <= $<"
1029$(call transform-host-c-or-s-to-o-no-deps, $(PRIVATE_ASFLAGS))
1030endef
1031
1032define transform-host-c-to-o
1033$(transform-host-c-to-o-no-deps)
1034$(transform-d-to-p)
1035endef
1036
1037define transform-host-s-to-o
1038$(transform-host-s-to-o-no-deps)
1039$(transform-d-to-p)
1040endef
1041
1042###########################################################
David 'Digit' Turner5dbb5292009-05-14 16:00:09 +02001043## Commands for running gcc to compile a host Objective-C file
1044###########################################################
1045
1046define transform-host-m-to-o-no-deps
1047@echo "host ObjC: $(PRIVATE_MODULE) <= $<"
1048$(call transform-host-c-or-s-to-o-no-deps)
1049endef
1050
David 'Digit' Turner5ca286d2011-02-11 16:19:31 +01001051define transform-host-m-to-o
David 'Digit' Turner5dbb5292009-05-14 16:00:09 +02001052$(transform-host-m-to-o-no-deps)
1053$(transform-d-to-p)
1054endef
1055
1056###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -08001057## Commands for running ar
1058###########################################################
1059
Ying Wange4b24eb2010-05-27 11:55:39 -07001060define _concat-if-arg2-not-empty
1061$(if $(2),$(hide) $(1) $(2))
1062endef
1063
1064# Split long argument list into smaller groups and call the command repeatedly
Torne (Richard Coles)bffaef22012-06-15 16:03:52 +01001065# Call the command at least once even if there are no arguments, as otherwise
1066# the output file won't be created.
Ying Wange4b24eb2010-05-27 11:55:39 -07001067#
1068# $(1): the command without arguments
1069# $(2): the arguments
1070define split-long-arguments
Torne (Richard Coles)bffaef22012-06-15 16:03:52 +01001071$(hide) $(1) $(wordlist 1,500,$(2))
Ying Wange4b24eb2010-05-27 11:55:39 -07001072$(call _concat-if-arg2-not-empty,$(1),$(wordlist 501,1000,$(2)))
1073$(call _concat-if-arg2-not-empty,$(1),$(wordlist 1001,1500,$(2)))
1074$(call _concat-if-arg2-not-empty,$(1),$(wordlist 1501,2000,$(2)))
1075$(call _concat-if-arg2-not-empty,$(1),$(wordlist 2001,2500,$(2)))
1076$(call _concat-if-arg2-not-empty,$(1),$(wordlist 2501,3000,$(2)))
1077$(call _concat-if-arg2-not-empty,$(1),$(wordlist 3001,99999,$(2)))
1078endef
1079
Ying Wanga02d3d92011-01-27 18:48:00 -08001080# $(1): the full path of the source static library.
1081define _extract-and-include-single-target-whole-static-lib
1082@echo "preparing StaticLib: $(PRIVATE_MODULE) [including $(1)]"
1083$(hide) ldir=$(PRIVATE_INTERMEDIATES_DIR)/WHOLE/$(basename $(notdir $(1)))_objs;\
1084 rm -rf $$ldir; \
1085 mkdir -p $$ldir; \
1086 filelist=; \
1087 for f in `$(TARGET_AR) t $(1)`; do \
1088 $(TARGET_AR) p $(1) $$f > $$ldir/$$f; \
1089 filelist="$$filelist $$ldir/$$f"; \
1090 done ; \
1091 $(TARGET_AR) $(TARGET_GLOBAL_ARFLAGS) $(PRIVATE_ARFLAGS) $@ $$filelist
1092
1093endef
1094
Dan Bornstein3d02eac2009-10-21 11:12:56 -07001095define extract-and-include-target-whole-static-libs
Dima Zavin46e9bec2009-05-27 19:41:07 -07001096$(foreach lib,$(PRIVATE_ALL_WHOLE_STATIC_LIBRARIES), \
Ying Wanga02d3d92011-01-27 18:48:00 -08001097 $(call _extract-and-include-single-target-whole-static-lib, $(lib)))
Dima Zavin46e9bec2009-05-27 19:41:07 -07001098endef
1099
The Android Open Source Project88b60792009-03-03 19:28:42 -08001100# Explicitly delete the archive first so that ar doesn't
1101# try to add to an existing archive.
1102define transform-o-to-static-lib
1103@mkdir -p $(dir $@)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001104@rm -f $@
Dan Bornstein3d02eac2009-10-21 11:12:56 -07001105$(extract-and-include-target-whole-static-libs)
Dima Zavin46e9bec2009-05-27 19:41:07 -07001106@echo "target StaticLib: $(PRIVATE_MODULE) ($@)"
Ying Wange4b24eb2010-05-27 11:55:39 -07001107$(call split-long-arguments,$(TARGET_AR) $(TARGET_GLOBAL_ARFLAGS) $(PRIVATE_ARFLAGS) $@,$(filter %.o, $^))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001108endef
1109
1110###########################################################
1111## Commands for running host ar
1112###########################################################
1113
Ying Wanga02d3d92011-01-27 18:48:00 -08001114# $(1): the full path of the source static library.
1115define _extract-and-include-single-host-whole-static-lib
1116@echo "preparing StaticLib: $(PRIVATE_MODULE) [including $(1)]"
1117$(hide) ldir=$(PRIVATE_INTERMEDIATES_DIR)/WHOLE/$(basename $(notdir $(1)))_objs;\
1118 rm -rf $$ldir; \
1119 mkdir -p $$ldir; \
1120 filelist=; \
Jeff Hamilton293f9392011-11-18 17:15:25 -06001121 for f in `$(HOST_AR) t $(1) | \grep '\.o$$'`; do \
Ying Wanga02d3d92011-01-27 18:48:00 -08001122 $(HOST_AR) p $(1) $$f > $$ldir/$$f; \
1123 filelist="$$filelist $$ldir/$$f"; \
1124 done ; \
1125 $(HOST_AR) $(HOST_GLOBAL_ARFLAGS) $(PRIVATE_ARFLAGS) $@ $$filelist
1126
1127endef
1128
Dan Bornstein3d02eac2009-10-21 11:12:56 -07001129define extract-and-include-host-whole-static-libs
1130$(foreach lib,$(PRIVATE_ALL_WHOLE_STATIC_LIBRARIES), \
Ying Wanga02d3d92011-01-27 18:48:00 -08001131 $(call _extract-and-include-single-host-whole-static-lib, $(lib)))
Dan Bornstein3d02eac2009-10-21 11:12:56 -07001132endef
1133
The Android Open Source Project88b60792009-03-03 19:28:42 -08001134# Explicitly delete the archive first so that ar doesn't
1135# try to add to an existing archive.
1136define transform-host-o-to-static-lib
1137@mkdir -p $(dir $@)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001138@rm -f $@
Dan Bornstein3d02eac2009-10-21 11:12:56 -07001139$(extract-and-include-host-whole-static-libs)
Dan Bornstein6bffc912009-10-15 13:01:36 -07001140@echo "host StaticLib: $(PRIVATE_MODULE) ($@)"
Ying Wange4b24eb2010-05-27 11:55:39 -07001141$(call split-long-arguments,$(HOST_AR) $(HOST_GLOBAL_ARFLAGS) $(PRIVATE_ARFLAGS) $@,$(filter %.o, $^))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001142endef
1143
1144
1145###########################################################
1146## Commands for running gcc to link a shared library or package
1147###########################################################
1148
1149# ld just seems to be so finicky with command order that we allow
1150# it to be overriden en-masse see combo/linux-arm.make for an example.
1151ifneq ($(HOST_CUSTOM_LD_COMMAND),true)
1152define transform-host-o-to-shared-lib-inner
Ying Wang3a7e4cc2011-01-28 14:14:47 -08001153$(hide) $(PRIVATE_CXX) \
Ying Wang80e6cce2011-01-24 23:25:36 -08001154 -Wl,-rpath-link=$(HOST_OUT_INTERMEDIATE_LIBRARIES) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001155 -Wl,-rpath,\$$ORIGIN/../lib \
1156 -shared -Wl,-soname,$(notdir $@) \
1157 $(PRIVATE_LDFLAGS) \
1158 $(HOST_GLOBAL_LD_DIRS) \
1159 $(if $(PRIVATE_NO_DEFAULT_COMPILER_FLAGS),, \
1160 $(HOST_GLOBAL_LDFLAGS) \
1161 ) \
1162 $(PRIVATE_ALL_OBJECTS) \
1163 -Wl,--whole-archive \
1164 $(call normalize-host-libraries,$(PRIVATE_ALL_WHOLE_STATIC_LIBRARIES)) \
1165 -Wl,--no-whole-archive \
Ying Wangfcdabd42011-04-25 14:22:41 -07001166 $(if $(PRIVATE_GROUP_STATIC_LIBRARIES),-Wl$(comma)--start-group) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001167 $(call normalize-host-libraries,$(PRIVATE_ALL_STATIC_LIBRARIES)) \
Ying Wangfcdabd42011-04-25 14:22:41 -07001168 $(if $(PRIVATE_GROUP_STATIC_LIBRARIES),-Wl$(comma)--end-group) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001169 $(call normalize-host-libraries,$(PRIVATE_ALL_SHARED_LIBRARIES)) \
1170 -o $@ \
1171 $(PRIVATE_LDLIBS)
1172endef
1173endif
1174
1175define transform-host-o-to-shared-lib
1176@mkdir -p $(dir $@)
1177@echo "host SharedLib: $(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
1181define transform-host-o-to-package
1182@mkdir -p $(dir $@)
1183@echo "host Package: $(PRIVATE_MODULE) ($@)"
Ying Wang3a7e4cc2011-01-28 14:14:47 -08001184$(transform-host-o-to-shared-lib-inner)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001185endef
1186
1187
1188###########################################################
1189## Commands for running gcc to link a shared library or package
1190###########################################################
1191
1192#echo >$@.vers "{"; \
1193#echo >>$@.vers " global:"; \
1194#$(BUILD_SYSTEM)/filter_symbols.sh $(TARGET_NM) " " ";" $(filter %.o,$^) | sort -u >>$@.vers; \
1195#echo >>$@.vers " local:"; \
1196#echo >>$@.vers " *;"; \
1197#echo >>$@.vers "};"; \
1198
1199# -Wl,--version-script=$@.vers \
1200
1201# ld just seems to be so finicky with command order that we allow
1202# it to be overriden en-masse see combo/linux-arm.make for an example.
1203ifneq ($(TARGET_CUSTOM_LD_COMMAND),true)
1204define transform-o-to-shared-lib-inner
Ying Wang3a7e4cc2011-01-28 14:14:47 -08001205$(hide) $(PRIVATE_CXX) \
Ying Wang1a081002010-07-13 14:55:47 -07001206 $(PRIVATE_TARGET_GLOBAL_LDFLAGS) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001207 -Wl,-rpath-link=$(TARGET_OUT_INTERMEDIATE_LIBRARIES) \
1208 -Wl,-rpath,\$$ORIGIN/../lib \
1209 -shared -Wl,-soname,$(notdir $@) \
1210 $(PRIVATE_LDFLAGS) \
Ying Wang1a081002010-07-13 14:55:47 -07001211 $(PRIVATE_TARGET_GLOBAL_LD_DIRS) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001212 $(PRIVATE_ALL_OBJECTS) \
1213 -Wl,--whole-archive \
Ying Wang80e6cce2011-01-24 23:25:36 -08001214 $(call normalize-target-libraries,$(PRIVATE_ALL_WHOLE_STATIC_LIBRARIES)) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001215 -Wl,--no-whole-archive \
Ying Wangfcdabd42011-04-25 14:22:41 -07001216 $(if $(PRIVATE_GROUP_STATIC_LIBRARIES),-Wl$(comma)--start-group) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001217 $(call normalize-target-libraries,$(PRIVATE_ALL_STATIC_LIBRARIES)) \
Ying Wangfcdabd42011-04-25 14:22:41 -07001218 $(if $(PRIVATE_GROUP_STATIC_LIBRARIES),-Wl$(comma)--end-group) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001219 $(call normalize-target-libraries,$(PRIVATE_ALL_SHARED_LIBRARIES)) \
1220 -o $@ \
1221 $(PRIVATE_LDLIBS)
1222endef
1223endif
1224
1225define transform-o-to-shared-lib
1226@mkdir -p $(dir $@)
1227@echo "target SharedLib: $(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
1231define transform-o-to-package
1232@mkdir -p $(dir $@)
1233@echo "target Package: $(PRIVATE_MODULE) ($@)"
Ying Wang3a7e4cc2011-01-28 14:14:47 -08001234$(transform-o-to-shared-lib-inner)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001235endef
1236
1237
1238###########################################################
1239## Commands for filtering a target executable or library
1240###########################################################
1241
The Android Open Source Project88b60792009-03-03 19:28:42 -08001242define transform-to-stripped
1243@mkdir -p $(dir $@)
1244@echo "target Strip: $(PRIVATE_MODULE) ($@)"
Bruce Beare45ac4342010-06-24 14:02:00 -07001245$(hide) $(TARGET_STRIP_COMMAND)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001246endef
1247
The Android Open Source Project88b60792009-03-03 19:28:42 -08001248
1249###########################################################
1250## Commands for running gcc to link an executable
1251###########################################################
1252
1253ifneq ($(TARGET_CUSTOM_LD_COMMAND),true)
1254define transform-o-to-executable-inner
Ying Wang3a7e4cc2011-01-28 14:14:47 -08001255$(hide) $(PRIVATE_CXX) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001256 $(TARGET_GLOBAL_LDFLAGS) \
1257 -Wl,-rpath-link=$(TARGET_OUT_INTERMEDIATE_LIBRARIES) \
1258 $(TARGET_GLOBAL_LD_DIRS) \
1259 -Wl,-rpath-link=$(TARGET_OUT_INTERMEDIATE_LIBRARIES) \
1260 -Wl,-rpath,\$$ORIGIN/../lib \
1261 $(PRIVATE_LDFLAGS) \
1262 $(TARGET_GLOBAL_LD_DIRS) \
1263 $(PRIVATE_ALL_OBJECTS) \
1264 -Wl,--whole-archive \
1265 $(call normalize-target-libraries,$(PRIVATE_ALL_WHOLE_STATIC_LIBRARIES)) \
1266 -Wl,--no-whole-archive \
Ying Wangfcdabd42011-04-25 14:22:41 -07001267 $(if $(PRIVATE_GROUP_STATIC_LIBRARIES),-Wl$(comma)--start-group) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001268 $(call normalize-target-libraries,$(PRIVATE_ALL_STATIC_LIBRARIES)) \
Ying Wangfcdabd42011-04-25 14:22:41 -07001269 $(if $(PRIVATE_GROUP_STATIC_LIBRARIES),-Wl$(comma)--end-group) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001270 $(call normalize-target-libraries,$(PRIVATE_ALL_SHARED_LIBRARIES)) \
1271 -o $@ \
1272 $(PRIVATE_LDLIBS)
1273endef
1274endif
1275
1276define transform-o-to-executable
1277@mkdir -p $(dir $@)
1278@echo "target Executable: $(PRIVATE_MODULE) ($@)"
Ying Wang3a7e4cc2011-01-28 14:14:47 -08001279$(transform-o-to-executable-inner)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001280endef
1281
1282
1283###########################################################
1284## Commands for running gcc to link a statically linked
1285## executable. In practice, we only use this on arm, so
1286## the other platforms don't have the
1287## transform-o-to-static-executable defined
1288###########################################################
1289
1290ifneq ($(TARGET_CUSTOM_LD_COMMAND),true)
1291define transform-o-to-static-executable-inner
1292endef
1293endif
1294
1295define transform-o-to-static-executable
1296@mkdir -p $(dir $@)
1297@echo "target StaticExecutable: $(PRIVATE_MODULE) ($@)"
Ying Wang3a7e4cc2011-01-28 14:14:47 -08001298$(transform-o-to-static-executable-inner)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001299endef
1300
1301
1302###########################################################
1303## Commands for running gcc to link a host executable
1304###########################################################
1305
1306ifneq ($(HOST_CUSTOM_LD_COMMAND),true)
1307define transform-host-o-to-executable-inner
Ying Wang3a7e4cc2011-01-28 14:14:47 -08001308$(hide) $(PRIVATE_CXX) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001309 $(PRIVATE_ALL_OBJECTS) \
1310 -Wl,--whole-archive \
1311 $(call normalize-host-libraries,$(PRIVATE_ALL_WHOLE_STATIC_LIBRARIES)) \
1312 -Wl,--no-whole-archive \
Ying Wangfcdabd42011-04-25 14:22:41 -07001313 $(if $(PRIVATE_GROUP_STATIC_LIBRARIES),-Wl$(comma)--start-group) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001314 $(call normalize-host-libraries,$(PRIVATE_ALL_STATIC_LIBRARIES)) \
Ying Wangfcdabd42011-04-25 14:22:41 -07001315 $(if $(PRIVATE_GROUP_STATIC_LIBRARIES),-Wl$(comma)--end-group) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001316 $(call normalize-host-libraries,$(PRIVATE_ALL_SHARED_LIBRARIES)) \
Conley Owensd9e7d252011-11-10 09:57:40 -08001317 -Wl,-rpath-link=$(HOST_OUT_INTERMEDIATE_LIBRARIES) \
1318 -Wl,-rpath,\$$ORIGIN/../lib \
1319 $(HOST_GLOBAL_LD_DIRS) \
1320 $(PRIVATE_LDFLAGS) \
1321 $(if $(PRIVATE_NO_DEFAULT_COMPILER_FLAGS),, \
1322 $(HOST_GLOBAL_LDFLAGS) \
1323 ) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001324 -o $@ \
1325 $(PRIVATE_LDLIBS)
1326endef
1327endif
1328
1329define transform-host-o-to-executable
1330@mkdir -p $(dir $@)
1331@echo "host Executable: $(PRIVATE_MODULE) ($@)"
Ying Wang3a7e4cc2011-01-28 14:14:47 -08001332$(transform-host-o-to-executable-inner)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001333endef
1334
1335
1336###########################################################
1337## Commands for running javac to make .class files
1338###########################################################
1339
1340#@echo "Source intermediates dir: $(PRIVATE_SOURCE_INTERMEDIATES_DIR)"
1341#@echo "Source intermediates: $$(find $(PRIVATE_SOURCE_INTERMEDIATES_DIR) -name '*.java')"
1342
1343# TODO: Right now we generate the asset resources twice, first as part
1344# of generating the Java classes, then at the end when packaging the final
1345# assets. This should be changed to do one of two things: (1) Don't generate
1346# any resource files the first time, only create classes during that stage;
1347# or (2) Don't use the -c flag with the second stage, instead taking the
1348# resource files from the first stage as additional input. My original intent
1349# was to use approach (2), but this requires a little more work in the tool.
1350# Maybe we should just use approach (1).
1351
1352# This rule creates the R.java and Manifest.java files, both of which
Ying Wang4f1ab922011-03-15 13:19:30 -07001353# are PRODUCT-neutral. Don't pass PRIVATE_PRODUCT_AAPT_CONFIG to this invocation.
The Android Open Source Project88b60792009-03-03 19:28:42 -08001354define create-resource-java-files
1355@mkdir -p $(PRIVATE_SOURCE_INTERMEDIATES_DIR)
1356@mkdir -p $(dir $(PRIVATE_RESOURCE_PUBLICS_OUTPUT))
Ying Wangc61d5932010-03-10 16:02:42 -08001357$(hide) $(AAPT) package $(PRIVATE_AAPT_FLAGS) -m \
Ying Wang4f1ab922011-03-15 13:19:30 -07001358 $(eval # PRIVATE_PRODUCT_AAPT_CONFIG is intentionally missing-- see comment.) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001359 $(addprefix -J , $(PRIVATE_SOURCE_INTERMEDIATES_DIR)) \
1360 $(addprefix -M , $(PRIVATE_ANDROID_MANIFEST)) \
1361 $(addprefix -P , $(PRIVATE_RESOURCE_PUBLICS_OUTPUT)) \
1362 $(addprefix -S , $(PRIVATE_RESOURCE_DIR)) \
1363 $(addprefix -A , $(PRIVATE_ASSET_DIR)) \
Dianne Hackborn9bd54042009-05-15 18:01:20 -07001364 $(addprefix -I , $(PRIVATE_AAPT_INCLUDES)) \
Joe Onorato2daa2b32009-08-30 13:39:24 -07001365 $(addprefix -G , $(PRIVATE_PROGUARD_OPTIONS_FILE)) \
Ying Wangbb9c2302011-04-08 17:27:35 -07001366 $(addprefix --min-sdk-version , $(PRIVATE_DEFAULT_APP_TARGET_SDK)) \
1367 $(addprefix --target-sdk-version , $(PRIVATE_DEFAULT_APP_TARGET_SDK)) \
Ying Wang1ae607a2010-06-23 13:34:22 -07001368 $(if $(filter --version-code,$(PRIVATE_AAPT_FLAGS)),,$(addprefix --version-code , $(PLATFORM_SDK_VERSION))) \
Ying Wang8f5069b2010-06-29 11:08:13 -07001369 $(if $(filter --version-name,$(PRIVATE_AAPT_FLAGS)),,$(addprefix --version-name , $(PLATFORM_VERSION)-$(BUILD_NUMBER))) \
Ying Wang8c254822010-03-16 16:13:56 -07001370 $(addprefix --rename-manifest-package , $(PRIVATE_MANIFEST_PACKAGE_NAME)) \
Ying Wang3dae0ee2010-09-02 15:41:01 -07001371 $(addprefix --rename-instrumentation-target-package , $(PRIVATE_MANIFEST_INSTRUMENTATION_FOR))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001372endef
1373
1374ifeq ($(HOST_OS),windows)
1375xlint_unchecked :=
1376else
Jeffrey Chyan7adbf972010-07-07 13:42:19 -05001377xlint_unchecked := -Xlint:unchecked
The Android Open Source Project88b60792009-03-03 19:28:42 -08001378endif
1379
Brian Carlstrombb7c6d82011-04-01 15:45:58 -07001380ifeq (true, $(ENABLE_INCREMENTALJAVAC))
1381incremental_dex := --incremental
1382else
1383incremental_dex :=
1384endif
1385
The Android Open Source Project88b60792009-03-03 19:28:42 -08001386# emit-line, <word list>, <output file>
1387define emit-line
1388 $(if $(1),echo -n '$(strip $(1)) ' >> $(2))
1389endef
1390
1391# dump-words-to-file, <word list>, <output file>
1392define dump-words-to-file
1393 @rm -f $(2)
1394 @$(call emit-line,$(wordlist 1,200,$(1)),$(2))
1395 @$(call emit-line,$(wordlist 201,400,$(1)),$(2))
1396 @$(call emit-line,$(wordlist 401,600,$(1)),$(2))
1397 @$(call emit-line,$(wordlist 601,800,$(1)),$(2))
1398 @$(call emit-line,$(wordlist 801,1000,$(1)),$(2))
1399 @$(call emit-line,$(wordlist 1001,1200,$(1)),$(2))
1400 @$(call emit-line,$(wordlist 1201,1400,$(1)),$(2))
1401 @$(call emit-line,$(wordlist 1401,1600,$(1)),$(2))
1402 @$(call emit-line,$(wordlist 1601,1800,$(1)),$(2))
1403 @$(call emit-line,$(wordlist 1801,2000,$(1)),$(2))
1404 @$(call emit-line,$(wordlist 2001,2200,$(1)),$(2))
1405 @$(call emit-line,$(wordlist 2201,2400,$(1)),$(2))
1406 @$(call emit-line,$(wordlist 2401,2600,$(1)),$(2))
1407 @$(call emit-line,$(wordlist 2601,2800,$(1)),$(2))
1408 @$(call emit-line,$(wordlist 2801,3000,$(1)),$(2))
1409 @$(call emit-line,$(wordlist 3001,3200,$(1)),$(2))
1410 @$(call emit-line,$(wordlist 3201,3400,$(1)),$(2))
1411 @$(call emit-line,$(wordlist 3401,3600,$(1)),$(2))
1412 @$(call emit-line,$(wordlist 3601,3800,$(1)),$(2))
1413 @$(call emit-line,$(wordlist 3801,4000,$(1)),$(2))
Jesse Wilson72c941a2010-05-04 16:33:49 -07001414 @$(call emit-line,$(wordlist 4001,4200,$(1)),$(2))
1415 @$(call emit-line,$(wordlist 4201,4400,$(1)),$(2))
1416 @$(call emit-line,$(wordlist 4401,4600,$(1)),$(2))
1417 @$(call emit-line,$(wordlist 4601,4800,$(1)),$(2))
1418 @$(call emit-line,$(wordlist 4801,5000,$(1)),$(2))
1419 @$(if $(wordlist 5001,5002,$(1)),$(error Too many words ($(words $(1)))))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001420endef
1421
1422# For a list of jar files, unzip them to a specified directory,
1423# but make sure that no META-INF files come along for the ride.
1424#
1425# $(1): files to unzip
1426# $(2): destination directory
1427define unzip-jar-files
1428 $(hide) for f in $(1); \
1429 do \
1430 if [ ! -f $$f ]; then \
1431 echo Missing file $$f; \
1432 exit 1; \
1433 fi; \
Sriram Ramanf1a55f82009-06-09 15:08:29 -07001434 unzip -qo $$f -d $(2); \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001435 (cd $(2) && rm -rf META-INF); \
1436 done
1437endef
1438
Brian Carlstrom78269512010-12-10 12:10:24 -08001439# Common definition to invoke javac on the host and target.
1440#
1441# Some historical notes:
1442# - below we write the list of java files to java-source-list to avoid argument
1443# list length problems with Cygwin
1444# - we filter out duplicate java file names because eclipse's compiler
1445# doesn't like them.
1446#
1447# $(1): javac
1448# $(2): bootclasspath
1449define compile-java
Joe Onorato64d85d02009-04-09 19:31:12 -07001450$(hide) rm -f $@
1451$(hide) rm -rf $(PRIVATE_CLASS_INTERMEDIATES_DIR)
Brian Carlstrom78269512010-12-10 12:10:24 -08001452$(hide) mkdir -p $(dir $@)
Joe Onorato64d85d02009-04-09 19:31:12 -07001453$(hide) mkdir -p $(PRIVATE_CLASS_INTERMEDIATES_DIR)
Brian Carlstrom78269512010-12-10 12:10:24 -08001454$(call unzip-jar-files,$(PRIVATE_STATIC_JAVA_LIBRARIES),$(PRIVATE_CLASS_INTERMEDIATES_DIR))
Ying Wang015edd22011-01-20 15:01:56 -08001455$(call dump-words-to-file,$(PRIVATE_JAVA_SOURCES),$(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list)
Joe Onorato64d85d02009-04-09 19:31:12 -07001456$(hide) if [ -d "$(PRIVATE_SOURCE_INTERMEDIATES_DIR)" ]; then \
Ying Wang015edd22011-01-20 15:01:56 -08001457 find $(PRIVATE_SOURCE_INTERMEDIATES_DIR) -name '*.java' >> $(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list; \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001458fi
Ying Wang015edd22011-01-20 15:01:56 -08001459$(hide) tr ' ' '\n' < $(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list \
1460 | sort -u > $(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list-uniq
Ying Wange109a1d2011-12-12 17:52:03 -08001461$(hide) if [ -s $(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list-uniq ] ; then \
1462 $(1) -encoding UTF-8 \
Brian Carlstrom78269512010-12-10 12:10:24 -08001463 $(strip $(PRIVATE_JAVAC_DEBUG_FLAGS)) \
1464 $(if $(findstring true,$(LOCAL_WARNINGS_ENABLE)),$(xlint_unchecked),) \
1465 $(2) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001466 $(addprefix -classpath ,$(strip \
1467 $(call normalize-path-list,$(PRIVATE_ALL_JAVA_LIBRARIES)))) \
Brian Carlstrom78269512010-12-10 12:10:24 -08001468 $(if $(findstring true,$(LOCAL_WARNINGS_ENABLE)),$(xlint_unchecked),) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001469 -extdirs "" -d $(PRIVATE_CLASS_INTERMEDIATES_DIR) \
Brian Carlstrom78269512010-12-10 12:10:24 -08001470 $(PRIVATE_JAVACFLAGS) \
Ying Wang015edd22011-01-20 15:01:56 -08001471 \@$(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list-uniq \
Ying Wange109a1d2011-12-12 17:52:03 -08001472 || ( rm -rf $(PRIVATE_CLASS_INTERMEDIATES_DIR) ; exit 41 ) \
1473fi
Ying Wang015edd22011-01-20 15:01:56 -08001474$(hide) rm -f $(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list
1475$(hide) rm -f $(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list-uniq
Ying Wang5758b8e2011-12-15 16:36:55 -08001476$(if $(PRIVATE_JAR_EXCLUDE_FILES), $(hide) find $(PRIVATE_CLASS_INTERMEDIATES_DIR) \
1477 -name $(word 1, $(PRIVATE_JAR_EXCLUDE_FILES)) \
1478 $(addprefix -o -name , $(wordlist 2, 999, $(PRIVATE_JAR_EXCLUDE_FILES))) \
1479 | xargs rm -rf)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001480$(hide) jar $(if $(strip $(PRIVATE_JAR_MANIFEST)),-cfm,-cf) \
1481 $@ $(PRIVATE_JAR_MANIFEST) -C $(PRIVATE_CLASS_INTERMEDIATES_DIR) .
Brian Carlstrom78269512010-12-10 12:10:24 -08001482endef
1483
1484define transform-java-to-classes.jar
1485@echo "target Java: $(PRIVATE_MODULE) ($(PRIVATE_CLASS_INTERMEDIATES_DIR))"
1486$(call compile-java,$(TARGET_JAVAC),$(PRIVATE_BOOTCLASSPATH))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001487endef
1488
Ying Wang015edd22011-01-20 15:01:56 -08001489# Override the above definitions if we want to do incremetal javac
1490ifeq (true, $(ENABLE_INCREMENTALJAVAC))
1491define compile-java
1492$(hide) mkdir -p $(dir $@)
1493$(hide) mkdir -p $(PRIVATE_CLASS_INTERMEDIATES_DIR)
1494$(hide) touch $(PRIVATE_CLASS_INTERMEDIATES_DIR)/newstamp
1495$(call unzip-jar-files,$(PRIVATE_STATIC_JAVA_LIBRARIES),$(PRIVATE_CLASS_INTERMEDIATES_DIR))
1496$(hide) if [ -e $(PRIVATE_CLASS_INTERMEDIATES_DIR)/stamp ] ; then \
1497 newerFlag=$$(echo -n "-newer $(PRIVATE_CLASS_INTERMEDIATES_DIR)/stamp") ; \
1498 fi ; \
1499 find $(PRIVATE_JAVA_SOURCES) $$newerFlag > $(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list ; \
1500 if [ -d "$(PRIVATE_SOURCE_INTERMEDIATES_DIR)" ]; then \
1501 find $(PRIVATE_SOURCE_INTERMEDIATES_DIR) -name '*.java' $$newerFlag >> $(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list; \
1502 fi
1503$(hide) tr ' ' '\n' < $(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list \
1504 | sort -u > $(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list-uniq
1505@echo "(Incremental) build source files:"
1506@cat $(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list-uniq
1507$(hide) if [ -s $(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list-uniq ] ; then \
Joe Onorato149dd912011-05-31 18:21:07 -07001508 $(1) -encoding UTF-8 \
Ying Wang015edd22011-01-20 15:01:56 -08001509 $(strip $(PRIVATE_JAVAC_DEBUG_FLAGS)) \
1510 $(if $(findstring true,$(LOCAL_WARNINGS_ENABLE)),$(xlint_unchecked),) \
1511 $(2) \
1512 $(addprefix -classpath ,$(strip \
1513 $(call normalize-path-list,$(PRIVATE_ALL_JAVA_LIBRARIES) $(PRIVATE_CLASS_INTERMEDIATES_DIR)))) \
1514 $(if $(findstring true,$(LOCAL_WARNINGS_ENABLE)),$(xlint_unchecked),) \
1515 -extdirs "" -d $(PRIVATE_CLASS_INTERMEDIATES_DIR) \
1516 $(PRIVATE_JAVACFLAGS) \
1517 \@$(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list-uniq \
1518 || ( exit 41 ) \
1519fi
1520$(hide) rm -f $(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list
1521$(hide) rm -f $(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list-uniq
1522$(hide) rm -f $@
Ying Wangae25ec12012-06-19 10:40:37 -07001523$(if $(PRIVATE_JAR_EXCLUDE_FILES), $(hide) find $(PRIVATE_CLASS_INTERMEDIATES_DIR) \
1524 -name $(word 1, $(PRIVATE_JAR_EXCLUDE_FILES)) \
1525 $(addprefix -o -name , $(wordlist 2, 999, $(PRIVATE_JAR_EXCLUDE_FILES))) \
1526 | xargs rm -rf)
Ying Wang015edd22011-01-20 15:01:56 -08001527$(hide) jar $(if $(strip $(PRIVATE_JAR_MANIFEST)),-cfm,-cf) \
1528 $@ $(PRIVATE_JAR_MANIFEST) -C $(PRIVATE_CLASS_INTERMEDIATES_DIR) .
1529$(hide) mv $(PRIVATE_CLASS_INTERMEDIATES_DIR)/newstamp $(PRIVATE_CLASS_INTERMEDIATES_DIR)/stamp
1530endef
1531
1532define transform-java-to-classes.jar
1533@echo "target Java: $(PRIVATE_MODULE) ($(PRIVATE_CLASS_INTERMEDIATES_DIR))"
1534$(call compile-java,$(TARGET_JAVAC),$(PRIVATE_BOOTCLASSPATH))
1535endef
1536endif # ENABLE_INCREMENTALJAVAC
1537
The Android Open Source Project88b60792009-03-03 19:28:42 -08001538define transform-classes.jar-to-emma
1539$(hide) java -classpath $(EMMA_JAR) emma instr -outmode fullcopy -outfile \
Guang Zhu155afe32010-03-10 15:48:03 -08001540 $(PRIVATE_EMMA_COVERAGE_FILE) -ip $< -d $(PRIVATE_EMMA_INTERMEDIATES_DIR) \
Guang Zhu9cd3d8c2010-06-15 13:31:25 -07001541 $(addprefix -ix , $(PRIVATE_EMMA_COVERAGE_FILTER))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001542endef
1543
1544#TODO: use a smaller -Xmx value for most libraries;
1545# only core.jar and framework.jar need a heap this big.
Raphaelf6ff4c52009-08-18 14:43:32 -07001546# 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 -08001547define transform-classes.jar-to-dex
1548@echo "target Dex: $(PRIVATE_MODULE)"
1549@mkdir -p $(dir $@)
Raphaelf6ff4c52009-08-18 14:43:32 -07001550$(hide) $(DX) \
Wink Saville29b3afa2012-01-30 15:30:10 -08001551 $(if $(findstring windows,$(HOST_OS)),,-JXms16M -JXmx2048M) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001552 --dex --output=$@ \
Brian Carlstrombb7c6d82011-04-01 15:45:58 -07001553 $(incremental_dex) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001554 $(if $(NO_OPTIMIZE_DX), \
1555 --no-optimize) \
1556 $(if $(GENERATE_DEX_DEBUG), \
1557 --debug --verbose \
1558 --dump-to=$(@:.dex=.lst) \
1559 --dump-width=1000) \
1560 $(PRIVATE_DX_FLAGS) \
1561 $<
1562endef
1563
1564# Create a mostly-empty .jar file that we'll add to later.
1565# The MacOS jar tool doesn't like creating empty jar files,
1566# so we need to give it something.
1567define create-empty-package
1568@mkdir -p $(dir $@)
1569$(hide) touch $(dir $@)/dummy
1570$(hide) (cd $(dir $@) && jar cf $(notdir $@) dummy)
1571$(hide) zip -qd $@ dummy
1572$(hide) rm $(dir $@)/dummy
1573endef
1574
1575#TODO: we kinda want to build different asset packages for
1576# different configurations, then combine them later (or something).
1577# Per-locale, etc.
1578# A list of dynamic and static parameters; build layers for
1579# dynamic params that lay over the static ones.
1580#TODO: update the manifest to point to the package file
Dianne Hackborn9bd54042009-05-15 18:01:20 -07001581#Note that the version numbers are given to aapt as simple default
1582#values; applications can override these by explicitly stating
1583#them in their manifest.
The Android Open Source Project88b60792009-03-03 19:28:42 -08001584define add-assets-to-package
Ying Wangc61d5932010-03-10 16:02:42 -08001585$(hide) $(AAPT) package -u $(PRIVATE_AAPT_FLAGS) \
Ying Wang4f1ab922011-03-15 13:19:30 -07001586 $(addprefix -c , $(PRIVATE_PRODUCT_AAPT_CONFIG)) \
Dianne Hackborna0f464a2011-10-14 19:37:57 -07001587 $(addprefix --preferred-configurations , $(PRIVATE_PRODUCT_AAPT_PREF_CONFIG)) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001588 $(addprefix -M , $(PRIVATE_ANDROID_MANIFEST)) \
1589 $(addprefix -S , $(PRIVATE_RESOURCE_DIR)) \
1590 $(addprefix -A , $(PRIVATE_ASSET_DIR)) \
1591 $(addprefix -I , $(PRIVATE_AAPT_INCLUDES)) \
Ying Wangbb9c2302011-04-08 17:27:35 -07001592 $(addprefix --min-sdk-version , $(PRIVATE_DEFAULT_APP_TARGET_SDK)) \
1593 $(addprefix --target-sdk-version , $(PRIVATE_DEFAULT_APP_TARGET_SDK)) \
Joe Onorato700b88e2010-10-05 17:33:58 -04001594 $(addprefix --product , $(TARGET_AAPT_CHARACTERISTICS)) \
Ying Wang1ae607a2010-06-23 13:34:22 -07001595 $(if $(filter --version-code,$(PRIVATE_AAPT_FLAGS)),,$(addprefix --version-code , $(PLATFORM_SDK_VERSION))) \
Ying Wang8f5069b2010-06-29 11:08:13 -07001596 $(if $(filter --version-name,$(PRIVATE_AAPT_FLAGS)),,$(addprefix --version-name , $(PLATFORM_VERSION)-$(BUILD_NUMBER))) \
Jeff Hamiltonbb67d212010-02-05 22:36:42 -06001597 $(addprefix --rename-manifest-package , $(PRIVATE_MANIFEST_PACKAGE_NAME)) \
Ying Wang3dae0ee2010-09-02 15:41:01 -07001598 $(addprefix --rename-instrumentation-target-package , $(PRIVATE_MANIFEST_INSTRUMENTATION_FOR)) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001599 -F $@
1600endef
1601
The Android Open Source Project88b60792009-03-03 19:28:42 -08001602define add-jni-shared-libs-to-package
1603$(hide) rm -rf $(dir $@)lib
Jack Palevicha0ab29b2010-06-18 15:38:07 +08001604$(hide) mkdir -p $(dir $@)lib/$(PRIVATE_JNI_SHARED_LIBRARIES_ABI)
1605$(hide) cp $(PRIVATE_JNI_SHARED_LIBRARIES) $(dir $@)lib/$(PRIVATE_JNI_SHARED_LIBRARIES_ABI)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001606$(hide) (cd $(dir $@) && zip -r $(notdir $@) lib)
1607$(hide) rm -rf $(dir $@)lib
1608endef
1609
The Android Open Source Project88b60792009-03-03 19:28:42 -08001610#TODO: update the manifest to point to the dex file
1611define add-dex-to-package
Ying Wang957fea52010-09-23 11:48:38 -07001612$(if $(filter classes.dex,$(notdir $(PRIVATE_DEX_FILE))),\
1613$(hide) $(AAPT) add -k $@ $(PRIVATE_DEX_FILE),\
Ying Wang6e7db382011-07-27 12:49:15 -07001614$(hide) _adtp_classes_dex=$(dir $(PRIVATE_DEX_FILE))classes.dex; \
1615cp $(PRIVATE_DEX_FILE) $$_adtp_classes_dex && \
1616$(AAPT) add -k $@ $$_adtp_classes_dex && rm -f $$_adtp_classes_dex)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001617endef
1618
Ying Wang85480622012-08-09 15:20:50 -07001619# Add java resources added by the current module.
1620#
The Android Open Source Project88b60792009-03-03 19:28:42 -08001621define add-java-resources-to-package
Ying Wang194a8ec2011-06-06 14:34:52 -07001622$(call dump-words-to-file, $(PRIVATE_EXTRA_JAR_ARGS), $(dir $@)jar-arg-list)
1623$(hide) jar uf $@ @$(dir $@)jar-arg-list
1624@rm -f $(dir $@)jar-arg-list
The Android Open Source Project88b60792009-03-03 19:28:42 -08001625endef
1626
Ying Wang85480622012-08-09 15:20:50 -07001627# Add java resources carried by static Java libraries.
1628#
1629define add-carried-java-resources
1630$(hide) if [ -d $(PRIVATE_CLASS_INTERMEDIATES_DIR) ] ; then \
1631 java_res_jar_flags=$$(find $(PRIVATE_CLASS_INTERMEDIATES_DIR) -type f -a -not -name "*.class" \
1632 | sed -e "s?^$(PRIVATE_CLASS_INTERMEDIATES_DIR)/? -C $(PRIVATE_CLASS_INTERMEDIATES_DIR) ?"); \
1633 if [ -n "$$java_res_jar_flags" ] ; then \
1634 echo $$java_res_jar_flags >$(dir $@)java_res_jar_flags; \
1635 jar uf $@ $$java_res_jar_flags; \
1636 fi; \
1637fi
1638endef
1639
The Android Open Source Project88b60792009-03-03 19:28:42 -08001640# Sign a package using the specified key/cert.
1641#
1642define sign-package
1643$(hide) mv $@ $@.unsigned
1644$(hide) java -jar $(SIGNAPK_JAR) \
1645 $(PRIVATE_CERTIFICATE) $(PRIVATE_PRIVATE_KEY) $@.unsigned $@.signed
1646$(hide) mv $@.signed $@
1647endef
1648
1649# Align STORED entries of a package on 4-byte boundaries
1650# to make them easier to mmap.
1651#
1652define align-package
1653$(hide) mv $@ $@.unaligned
1654$(hide) $(ZIPALIGN) -f 4 $@.unaligned $@.aligned
1655$(hide) mv $@.aligned $@
1656endef
1657
1658define install-dex-debug
1659$(hide) if [ -f "$(PRIVATE_INTERMEDIATES_DIR)/classes.dex" ]; then \
1660 mkdir -p $(TOP)/dalvik/DEBUG-FILES; \
1661 $(ACP) $(PRIVATE_INTERMEDIATES_DIR)/classes.dex \
1662 $(TOP)/dalvik/DEBUG-FILES/$(PRIVATE_MODULE).dex; \
1663 fi
1664$(hide) if [ -f "$(PRIVATE_INTERMEDIATES_DIR)/classes.lst" ]; then \
1665 mkdir -p $(TOP)/dalvik/DEBUG-FILES; \
1666 $(ACP) $(PRIVATE_INTERMEDIATES_DIR)/classes.lst \
1667 $(TOP)/dalvik/DEBUG-FILES/$(PRIVATE_MODULE).lst; \
1668 fi
1669endef
1670
1671# TODO(joeo): If we can ever upgrade to post 3.81 make and get the
1672# new prebuilt rules to work, we should change this to copy the
1673# resources to the out directory and then copy the resources.
1674
Brian Carlstrom78269512010-12-10 12:10:24 -08001675# Note: we intentionally don't clean PRIVATE_CLASS_INTERMEDIATES_DIR
1676# in transform-java-to-classes for the sake of vm-tests.
The Android Open Source Project88b60792009-03-03 19:28:42 -08001677define transform-host-java-to-package
1678@echo "host Java: $(PRIVATE_MODULE) ($(PRIVATE_CLASS_INTERMEDIATES_DIR))"
Ying Wang015edd22011-01-20 15:01:56 -08001679$(call compile-java,$(HOST_JAVAC),$(PRIVATE_BOOTCLASSPATH))
Ying Wang194a8ec2011-06-06 14:34:52 -07001680$(if $(PRIVATE_EXTRA_JAR_ARGS), $(call add-java-resources-to-package))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001681endef
1682
1683###########################################################
1684## Obfuscate a jar file
1685###########################################################
1686
1687# PRIVATE_KEEP_FILE is a file containing a list of classes
1688# PRIVATE_INTERMEDIATES_DIR is a directory we can use for temporary files
1689# The module using this must depend on
1690# $(HOST_OUT_JAVA_LIBRARIES)/proguard-4.0.1.jar
1691define obfuscate-jar
1692@echo "Obfuscate jar: $(notdir $@) ($@)"
1693@mkdir -p $(dir $@)
1694@rm -f $@
1695@mkdir -p $(PRIVATE_INTERMEDIATES_DIR)
1696$(hide) sed -e 's/^/-keep class /' < $(PRIVATE_KEEP_FILE) > \
1697 $(PRIVATE_INTERMEDIATES_DIR)/keep.pro
1698$(hide) java -Xmx512M -jar $(HOST_OUT_JAVA_LIBRARIES)/proguard-4.0.1.jar \
1699 -injars $< \
1700 -outjars $@ \
1701 -target 1.5 \
1702 -dontnote -dontwarn \
1703 -printmapping $(PRIVATE_INTERMEDIATES_DIR)/out.map \
1704 -forceprocessing \
1705 -renamesourcefileattribute SourceFile \
1706 -keepattributes Exceptions,InnerClasses,Signature,Deprecated,SourceFile,LineNumberTable,*Annotation*,EnclosingMethod \
1707 -repackageclasses \
1708 -keepclassmembers "class * { public protected *; }" \
1709 @$(PRIVATE_INTERMEDIATES_DIR)/keep.pro
1710endef
1711
1712###########################################################
1713## Commands for copying files
1714###########################################################
1715
1716# Define a rule to copy a header. Used via $(eval) by copy_headers.make.
1717# $(1): source header
1718# $(2): destination header
1719define copy-one-header
1720$(2): $(1)
1721 @echo "Header: $$@"
1722 $$(copy-file-to-new-target-with-cp)
1723endef
1724
1725# Define a rule to copy a file. For use via $(eval).
1726# $(1): source file
1727# $(2): destination file
1728define copy-one-file
1729$(2): $(1) | $(ACP)
1730 @echo "Copy: $$@"
1731 $$(copy-file-to-target)
1732endef
1733
Joe Onoratoe44705a2012-05-17 17:12:04 -07001734# Copies many files.
1735# $(1): The files to copy. Each entry is a ':' separated src:dst pair
1736# Evaluates to the list of the dst files (ie suitable for a dependency list)
1737define copy-many-files
1738$(foreach f, $(1), $(strip \
1739 $(eval _cmf_tuple := $(subst :, ,$(f))) \
1740 $(eval _cmf_src := $(word 1,$(_cmf_tuple))) \
1741 $(eval _cmf_dest := $(word 2,$(_cmf_tuple))) \
1742 $(eval $(call copy-one-file,$(_cmf_src),$(_cmf_dest))) \
1743 $(_cmf_dest)))
1744endef
1745
Ying Wang3ceecfa2012-05-14 14:39:00 -07001746# Copy the file only if it's a well-formed xml file. For use via $(eval).
1747# $(1): source file
1748# $(2): destination file, must end with .xml.
1749define copy-xml-file-checked
1750$(2): $(1) | $(ACP)
1751 @echo "Copy xml: $$@"
1752 $(hide) xmllint $$< >/dev/null # Don't print the xml file to stdout.
1753 $$(copy-file-to-target)
1754endef
1755
The Android Open Source Project88b60792009-03-03 19:28:42 -08001756# The -t option to acp and the -p option to cp is
1757# required for OSX. OSX has a ridiculous restriction
1758# where it's an error for a .a file's modification time
1759# to disagree with an internal timestamp, and this
1760# macro is used to install .a files (among other things).
1761
1762# Copy a single file from one place to another,
1763# preserving permissions and overwriting any existing
1764# file.
Ying Wang84ed6fa2011-01-18 17:21:20 -08001765# We disable the "-t" option for acp can not handle
1766# high resolution timestamp correctly on file systems like ext4.
1767# Therefore copy-file-to-target is the same as copy-file-to-new-target.
The Android Open Source Project88b60792009-03-03 19:28:42 -08001768define copy-file-to-target
1769@mkdir -p $(dir $@)
Ying Wang84ed6fa2011-01-18 17:21:20 -08001770$(hide) $(ACP) -fp $< $@
The Android Open Source Project88b60792009-03-03 19:28:42 -08001771endef
1772
1773# The same as copy-file-to-target, but use the local
1774# cp command instead of acp.
1775define copy-file-to-target-with-cp
1776@mkdir -p $(dir $@)
1777$(hide) cp -fp $< $@
1778endef
1779
Dianne Hackborn9c0c4b72009-08-11 19:16:46 -07001780# The same as copy-file-to-target, but use the zipalign tool to do so.
1781define copy-file-to-target-with-zipalign
1782@mkdir -p $(dir $@)
1783$(hide) $(ZIPALIGN) -f 4 $< $@
1784endef
1785
Doug Zongker1046d202009-08-06 13:02:19 -07001786# The same as copy-file-to-target, but strip out "# comment"-style
1787# comments (for config files and such).
1788define copy-file-to-target-strip-comments
1789@mkdir -p $(dir $@)
1790$(hide) sed -e 's/#.*$$//' -e 's/[ \t]*$$//' -e '/^$$/d' < $< > $@
1791endef
1792
The Android Open Source Project88b60792009-03-03 19:28:42 -08001793# The same as copy-file-to-target, but don't preserve
1794# the old modification time.
1795define copy-file-to-new-target
1796@mkdir -p $(dir $@)
1797$(hide) $(ACP) -fp $< $@
1798endef
1799
1800# The same as copy-file-to-new-target, but use the local
1801# cp command instead of acp.
1802define copy-file-to-new-target-with-cp
1803@mkdir -p $(dir $@)
1804$(hide) cp -f $< $@
1805endef
1806
1807# Copy a prebuilt file to a target location.
1808define transform-prebuilt-to-target
1809@echo "$(if $(PRIVATE_IS_HOST_MODULE),host,target) Prebuilt: $(PRIVATE_MODULE) ($@)"
1810$(copy-file-to-target)
1811endef
1812
Dianne Hackborn9c0c4b72009-08-11 19:16:46 -07001813# Copy a prebuilt file to a target location, using zipalign on it.
1814define transform-prebuilt-to-target-with-zipalign
1815@echo "$(if $(PRIVATE_IS_HOST_MODULE),host,target) Prebuilt APK: $(PRIVATE_MODULE) ($@)"
1816$(copy-file-to-target-with-zipalign)
1817endef
1818
Doug Zongker1046d202009-08-06 13:02:19 -07001819# Copy a prebuilt file to a target location, stripping "# comment" comments.
1820define transform-prebuilt-to-target-strip-comments
1821@echo "$(if $(PRIVATE_IS_HOST_MODULE),host,target) Prebuilt: $(PRIVATE_MODULE) ($@)"
1822$(copy-file-to-target-strip-comments)
1823endef
1824
The Android Open Source Project88b60792009-03-03 19:28:42 -08001825###########################################################
1826## On some platforms (MacOS), after copying a static
1827## library, ranlib must be run to update an internal
1828## timestamp!?!?!
1829###########################################################
1830
1831ifeq ($(HOST_RUN_RANLIB_AFTER_COPYING),true)
1832define transform-host-ranlib-copy-hack
1833 $(hide) ranlib $@ || true
1834endef
1835else
1836define transform-host-ranlib-copy-hack
Patrick Scott0e27dff2010-05-07 08:37:11 -04001837@true
The Android Open Source Project88b60792009-03-03 19:28:42 -08001838endef
1839endif
1840
1841ifeq ($(TARGET_RUN_RANLIB_AFTER_COPYING),true)
1842define transform-ranlib-copy-hack
1843 $(hide) ranlib $@
1844endef
1845else
1846define transform-ranlib-copy-hack
Patrick Scott0e27dff2010-05-07 08:37:11 -04001847@true
The Android Open Source Project88b60792009-03-03 19:28:42 -08001848endef
1849endif
1850
1851
1852###########################################################
Ying Wang3b2bdf12010-02-01 09:51:23 -08001853## Commands to call Proguard
1854###########################################################
1855
1856# Command to copy the file with acp, if proguard is disabled.
1857define proguard-disabled-commands
1858@echo Copying: $@
Ying Wang84ed6fa2011-01-18 17:21:20 -08001859$(hide) $(ACP) -fp $< $@
Ying Wang3b2bdf12010-02-01 09:51:23 -08001860endef
1861
1862# Command to call Proguard
1863# $(1): extra flags for instrumentation.
1864define proguard-enabled-commands
1865@echo Proguard: $@
1866$(hide) $(PROGUARD) -injars $< -outjars $@ $(PRIVATE_PROGUARD_FLAGS) $(1)
1867endef
1868
1869# Figure out the proguard dictionary file of the module that is instrumentationed for.
1870define get-instrumentation-proguard-flags
1871$(if $(PRIVATE_INSTRUMENTATION_FOR),$(if $(ALL_MODULES.$(PRIVATE_INSTRUMENTATION_FOR).PROGUARD_ENABLED),-applymapping $(call intermediates-dir-for,APPS,$(PRIVATE_INSTRUMENTATION_FOR),,COMMON)/proguard_dictionary))
1872endef
1873
1874define transform-jar-to-proguard
1875$(eval _instrumentation_proguard_flags:=$(call get-instrumentation-proguard-flags))
1876$(eval _enable_proguard:=$(PRIVATE_PROGUARD_ENABLED)$(_instrumentation_proguard_flags))
1877$(if $(_enable_proguard),$(call proguard-enabled-commands,$(_instrumentation_proguard_flags)),$(call proguard-disabled-commands))
1878$(eval _instrumentation_proguard_flags:=)
1879$(eval _enable_proguard:=)
1880endef
1881
1882
1883###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -08001884## Stuff source generated from one-off tools
1885###########################################################
1886
1887define transform-generated-source
1888@echo "target Generated: $(PRIVATE_MODULE) <= $<"
1889@mkdir -p $(dir $@)
1890$(hide) $(PRIVATE_CUSTOM_TOOL)
1891endef
1892
1893
1894###########################################################
1895## Assertions about attributes of the target
1896###########################################################
1897
1898# $(1): The file to check
1899ifndef get-file-size
1900$(error HOST_OS must define get-file-size)
1901endif
1902
Doug Zongker4647f122009-07-02 09:00:54 -07001903# Convert a partition data size (eg, as reported in /proc/mtd) to the
1904# size of the image used to flash that partition (which includes a
Lars Svensson9cb8c282010-12-06 15:24:58 +01001905# spare area for each page).
Doug Zongker4647f122009-07-02 09:00:54 -07001906# $(1): the partition data size
1907define image-size-from-data-size
Ying Wang4a2ecaf2011-02-09 17:24:27 -08001908$(strip $(eval _isfds_value := $$(shell echo $$$$(($(1) / $(BOARD_NAND_PAGE_SIZE) * \
1909 ($(BOARD_NAND_PAGE_SIZE)+$(BOARD_NAND_SPARE_SIZE))))))\
1910$(if $(filter 0, $(_isfds_value)),$(shell echo $$(($(BOARD_NAND_PAGE_SIZE)+$(BOARD_NAND_SPARE_SIZE)))),$(_isfds_value))\
1911$(eval _isfds_value :=))
Doug Zongker4647f122009-07-02 09:00:54 -07001912endef
1913
1914# $(1): The file(s) to check (often $@)
1915# $(2): The maximum total image size, in decimal bytes
Doug Zongker6dd2ae02009-08-25 17:23:57 -07001916# $(3): the type of filesystem "yaffs" or "raw"
The Android Open Source Project88b60792009-03-03 19:28:42 -08001917#
1918# If $(2) is empty, evaluates to "true"
1919#
1920# Reserve bad blocks. Make sure that MAX(1% of partition size, 2 blocks)
1921# is left over after the image has been flashed. Round the 1% up to the
1922# next whole flash block size.
1923define assert-max-file-size
1924$(if $(2), \
Doug Zongker742fa572009-07-08 12:09:04 -07001925 size=$$(for i in $(1); do $(call get-file-size,$$i); echo +; done; echo 0); \
1926 total=$$(( $$( echo "$$size" ) )); \
Doug Zongker4647f122009-07-02 09:00:54 -07001927 printname=$$(echo -n "$(1)" | tr " " +); \
Doug Zongker4647f122009-07-02 09:00:54 -07001928 img_blocksize=$(call image-size-from-data-size,$(BOARD_FLASH_BLOCK_SIZE)); \
Doug Zongker6dd2ae02009-08-25 17:23:57 -07001929 if [ "$(3)" == "yaffs" ]; then \
Doug Zongker93d9ff42009-09-14 17:46:41 -07001930 reservedblocks=8; \
Doug Zongker6dd2ae02009-08-25 17:23:57 -07001931 else \
Doug Zongker4ac1ba62009-08-25 20:38:50 -07001932 reservedblocks=0; \
Doug Zongker6dd2ae02009-08-25 17:23:57 -07001933 fi; \
Doug Zongker4647f122009-07-02 09:00:54 -07001934 twoblocks=$$((img_blocksize * 2)); \
1935 onepct=$$((((($(2) / 100) - 1) / img_blocksize + 1) * img_blocksize)); \
Doug Zongker6dd2ae02009-08-25 17:23:57 -07001936 reserve=$$(((twoblocks > onepct ? twoblocks : onepct) + \
1937 reservedblocks * img_blocksize)); \
Doug Zongker4647f122009-07-02 09:00:54 -07001938 maxsize=$$(($(2) - reserve)); \
Ying Wang99bcbeb2011-12-02 10:34:45 -08001939 echo "$$printname maxsize=$$maxsize blocksize=$$img_blocksize total=$$total reserve=$$reserve"; \
Doug Zongker4647f122009-07-02 09:00:54 -07001940 if [ "$$total" -gt "$$maxsize" ]; then \
1941 echo "error: $$printname too large ($$total > [$(2) - $$reserve])"; \
1942 false; \
Doug Zongker742fa572009-07-08 12:09:04 -07001943 elif [ "$$total" -gt $$((maxsize - 32768)) ]; then \
Doug Zongker4647f122009-07-02 09:00:54 -07001944 echo "WARNING: $$printname approaching size limit ($$total now; limit $$maxsize)"; \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001945 fi \
1946 , \
1947 true \
1948 )
1949endef
1950
Doug Zongker8510a1e2009-08-07 16:38:08 -07001951# Like assert-max-file-size, but the second argument is a partition
1952# size, which we'll convert to a max image size before checking it
1953# against the files.
1954#
1955# $(1): The file(s) to check (often $@)
1956# $(2): The partition size.
1957define assert-max-image-size
1958$(if $(2), \
1959 $(call assert-max-file-size,$(1),$(call image-size-from-data-size,$(2))), \
1960 true)
1961endef
1962
Doug Zongkere01100c2009-06-19 17:12:18 -07001963
1964###########################################################
1965## Define device-specific radio files
1966###########################################################
1967
1968# Copy a radio image file to the output location, and add it to
1969# INSTALLED_RADIOIMAGE_TARGET.
1970# $(1): filename
1971define add-radio-file
Doug Zongker14833602010-02-02 13:12:04 -08001972 $(eval $(call add-radio-file-internal,$(1),$(notdir $(1))))
Doug Zongkere01100c2009-06-19 17:12:18 -07001973endef
1974define add-radio-file-internal
Doug Zongker14833602010-02-02 13:12:04 -08001975INSTALLED_RADIOIMAGE_TARGET += $$(PRODUCT_OUT)/$(2)
Doug Zongker14833602010-02-02 13:12:04 -08001976$$(PRODUCT_OUT)/$(2) : $$(LOCAL_PATH)/$(1) | $$(ACP)
Doug Zongkere01100c2009-06-19 17:12:18 -07001977 $$(transform-prebuilt-to-target)
1978endef
1979
Doug Zongker9296f092012-03-20 16:42:22 -07001980# Version of add-radio-file that also arranges for the version of the
1981# file to be checked against the contents of
1982# $(TARGET_BOARD_INFO_FILE).
1983# $(1): filename
1984# $(2): name of version variable in board-info (eg, "version-baseband")
1985define add-radio-file-checked
1986 $(eval $(call add-radio-file-checked-internal,$(1),$(notdir $(1)),$(2)))
1987endef
1988define add-radio-file-checked-internal
1989INSTALLED_RADIOIMAGE_TARGET += $$(PRODUCT_OUT)/$(2)
1990BOARD_INFO_CHECK += $(3):$(LOCAL_PATH)/$(1)
1991$$(PRODUCT_OUT)/$(2) : $$(LOCAL_PATH)/$(1) | $$(ACP)
1992 $$(transform-prebuilt-to-target)
1993endef
1994
Doug Zongkere01100c2009-06-19 17:12:18 -07001995
The Android Open Source Project88b60792009-03-03 19:28:42 -08001996###########################################################
Joe Onorato899e62a2010-02-04 17:37:21 -08001997# Override the package defined in $(1), setting the
1998# variables listed below differently.
1999#
2000# $(1): The makefile to override (relative to the source
2001# tree root)
2002# $(2): Old LOCAL_PACKAGE_NAME value.
2003# $(3): New LOCAL_PACKAGE_NAME value.
Ying Wang3dae0ee2010-09-02 15:41:01 -07002004# $(4): New LOCAL_MANIFEST_PACKAGE_NAME value.
2005# $(5): New LOCAL_CERTIFICATE value.
2006# $(6): New LOCAL_INSTRUMENTATION_FOR value.
2007# $(7): New LOCAL_MANIFEST_INSTRUMENTATION_FOR value.
Joe Onorato899e62a2010-02-04 17:37:21 -08002008#
2009# Note that LOCAL_PACKAGE_OVERRIDES is NOT cleared in
2010# clear_vars.mk.
2011###########################################################
2012define inherit-package
Ying Wang3dae0ee2010-09-02 15:41:01 -07002013 $(eval $(call inherit-package-internal,$(1),$(2),$(3),$(4),$(5),$(6),$(7)))
Joe Onorato899e62a2010-02-04 17:37:21 -08002014endef
2015
2016define inherit-package-internal
2017 LOCAL_PACKAGE_OVERRIDES \
Ying Wang3dae0ee2010-09-02 15:41:01 -07002018 := $(strip $(1))||$(strip $(2))||$(strip $(3))||$(strip $(4))||&&$(strip $(5))||&&$(strip $(6))||&&$(strip $(7)) $(LOCAL_PACKAGE_OVERRIDES)
Joe Onorato899e62a2010-02-04 17:37:21 -08002019 include $(1)
2020 LOCAL_PACKAGE_OVERRIDES \
2021 := $(wordlist 1,$(words $(LOCAL_PACKAGE_OVERRIDES)), $(LOCAL_PACKAGE_OVERRIDES))
2022endef
2023
2024# To be used with inherit-package above
2025# Evalutes to true if the package was overridden
2026define set-inherited-package-variables
2027$(strip $(call set-inherited-package-variables-internal))
2028endef
2029
2030define keep-or-override
2031$(eval $(1) := $(if $(2),$(2),$($(1))))
2032endef
2033
2034define set-inherited-package-variables-internal
2035 $(eval _o := $(subst ||, ,$(lastword $(LOCAL_PACKAGE_OVERRIDES))))
2036 $(eval _n := $(subst ||, ,$(firstword $(LOCAL_PACKAGE_OVERRIDES))))
2037 $(if $(filter $(word 2,$(_n)),$(LOCAL_PACKAGE_NAME)), \
2038 $(eval LOCAL_PACKAGE_NAME := $(word 3,$(_o))) \
2039 $(eval LOCAL_MANIFEST_PACKAGE_NAME := $(word 4,$(_o))) \
Ying Wang3dae0ee2010-09-02 15:41:01 -07002040 $(call keep-or-override,LOCAL_CERTIFICATE,$(patsubst &&%,%,$(word 5,$(_o)))) \
2041 $(call keep-or-override,LOCAL_INSTRUMENTATION_FOR,$(patsubst &&%,%,$(word 6,$(_o)))) \
2042 $(call keep-or-override,LOCAL_MANIFEST_INSTRUMENTATION_FOR,$(patsubst &&%,%,$(word 7,$(_o)))) \
Joe Onorato899e62a2010-02-04 17:37:21 -08002043 $(eval LOCAL_OVERRIDES_PACKAGES := $(sort $(LOCAL_OVERRIDES_PACKAGES) $(word 2,$(_o)))) \
2044 true \
2045 ,)
2046endef
2047
Ying Wang000e89a2012-04-30 15:48:27 -07002048###########################################################
2049## Expand a module name list with REQUIRED modules
2050###########################################################
2051# $(1): The variable name that holds the initial module name list.
2052# the variable will be modified to hold the expanded results.
2053# $(2): The initial module name list.
2054# Returns empty string (maybe with some whitespaces).
2055define expand-required-modules
2056$(eval _erm_new_modules := $(sort $(filter-out $($(1)),\
2057 $(foreach m,$(2),$(ALL_MODULES.$(m).REQUIRED)))))\
2058$(if $(_erm_new_modules),$(eval $(1) += $(_erm_new_modules))\
2059 $(call expand-required-modules,$(1),$(_erm_new_modules)))
2060endef
Joe Onorato899e62a2010-02-04 17:37:21 -08002061
2062###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -08002063## Other includes
2064###########################################################
2065
2066# -----------------------------------------------------------------
2067# Rules and functions to help copy important files to DIST_DIR
2068# when requested.
2069include $(BUILD_SYSTEM)/distdir.mk
2070
Jean-Baptiste Queru4074f232010-09-03 16:32:58 -07002071# -----------------------------------------------------------------
2072# The modules allowed to use a user tag
2073include $(BUILD_SYSTEM)/user_tags.mk
The Android Open Source Project88b60792009-03-03 19:28:42 -08002074
2075# broken:
2076# $(foreach file,$^,$(if $(findstring,.a,$(suffix $file)),-l$(file),$(file)))
2077
2078###########################################################
2079## Misc notes
2080###########################################################
2081
2082#DEPDIR = .deps
2083#df = $(DEPDIR)/$(*F)
2084
2085#SRCS = foo.c bar.c ...
2086
2087#%.o : %.c
2088# @$(MAKEDEPEND); \
2089# cp $(df).d $(df).P; \
2090# sed -e 's/#.*//' -e 's/^[^:]*: *//' -e 's/ *\\$$//' \
2091# -e '/^$$/ d' -e 's/$$/ :/' < $(df).d >> $(df).P; \
2092# rm -f $(df).d
2093# $(COMPILE.c) -o $@ $<
2094
2095#-include $(SRCS:%.c=$(DEPDIR)/%.P)
2096
2097
2098#%.o : %.c
2099# $(COMPILE.c) -MD -o $@ $<
2100# @cp $*.d $*.P; \
2101# sed -e 's/#.*//' -e 's/^[^:]*: *//' -e 's/ *\\$$//' \
2102# -e '/^$$/ d' -e 's/$$/ :/' < $*.d >> $*.P; \
2103# rm -f $*.d