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