definitions.mk revision ba37043835e424290aa468d3104486c02b25ed39
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# GPL module license files
82ALL_GPL_MODULE_LICENSE_FILES:=
83
84# 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
88###########################################################
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###########################################################
103## 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###########################################################
114## Retrieve the directory of the current makefile
115###########################################################
116
117# Figure out where we are.
118define my-dir
119$(strip \
120  $(eval LOCAL_MODULE_MAKEFILE := $$(lastword $$(MAKEFILE_LIST))) \
121  $(if $(filter $(CLEAR_VARS),$(LOCAL_MODULE_MAKEFILE)), \
122    $(error LOCAL_PATH must be set before including $$(CLEAR_VARS)) \
123   , \
124    $(patsubst %/,%,$(dir $(LOCAL_MODULE_MAKEFILE))) \
125   ) \
126 )
127endef
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
145$(shell build/tools/findleaves.py --prune=out --prune=.repo --prune=.git \
146        --mindepth=2 $(1) Android.mk)
147endef
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
164$(wildcard $(addsuffix /Android.mk, $(addprefix $(call my-dir)/,$(1))))
165endef
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 -L $(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 -L $(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 -L $(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###########################################################
233## 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 -L $(1) -name "*.logtags" -and -not -name ".*") \
242  )
243endef
244
245###########################################################
246## 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 -L $(1) -name "*.proto" -and -not -name ".*") \
255  )
256endef
257
258###########################################################
259## 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 -L $(1) \( -name "*.rs" -or -name "*.fs" \) -and -not -name ".*") \
268  )
269endef
270
271###########################################################
272## 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 -L $(1) -name "*.html" -and -not -name ".*") \
281 )
282endef
283
284###########################################################
285## 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
290$(call all-html-files-under,.)
291endef
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 -L $(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 -L $(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 ./%,%, \
322	$(shell if [ -d $(1) ] ; then cd $(1) ; find ./ -not -name '.*' -and -type f -and -not -type l ; fi)), \
323	$(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 \
349  $(eval _fpf := $(wildcard $(foreach f, $(2), $(strip $(1))/$(f)))) \
350  $(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)) \
417    $(if $(filter $(_idfPrefix)-$(_idfClass),$(COMMON_MODULE_CLASSES))$(4), \
418        $(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###########################################################
484## 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###########################################################
509## Convert "core ext framework" to "out/.../javalib.jar ..."
510## $(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, \
518	JAVA_LIBRARIES,$(1),$(2),COMMON)
519endef
520
521# $(1): library name
522# $(2): Non-empty if IS_HOST_MODULE
523define _java-lib-full-classes.jar
524$(call _java-lib-dir,$(1),$(2))/classes$(COMMON_JAVA_PACKAGE_SUFFIX)
525endef
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
534# $(2): Non-empty if IS_HOST_MODULE
535define _java-lib-full-dep
536$(call _java-lib-dir,$(1),$(2))/javalib$(COMMON_JAVA_PACKAGE_SUFFIX)
537endef
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###########################################################
546## 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###########################################################
570## Convert "a b c" into "a:b:c"
571###########################################################
572define normalize-path-list
573$(subst $(space),:,$(strip $(1)))
574endef
575
576###########################################################
577## Read the word out of a colon-separated list of words.
578## This has the same behavior as the built-in function
579## $(word n,str).
580##
581## The individual words may not contain spaces.
582##
583## $(1): 1 based index
584## $(2): value of the form a:b:c...
585###########################################################
586
587define word-colon
588$(word $(1),$(subst :,$(space),$(2)))
589endef
590
591###########################################################
592## Convert "a=b c= d e = f" into "a=b c=d e=f"
593##
594## $(1): list to collapse
595## $(2): if set, separator word; usually "=", ":", or ":="
596##       Defaults to "=" if not set.
597###########################################################
598
599define collapse-pairs
600$(eval _cpSEP := $(strip $(if $(2),$(2),=)))\
601$(subst $(space)$(_cpSEP)$(space),$(_cpSEP),$(strip \
602    $(subst $(_cpSEP), $(_cpSEP) ,$(1))))
603endef
604
605###########################################################
606## Given a list of pairs, if multiple pairs have the same
607## first components, keep only the first pair.
608##
609## $(1): list of pairs
610## $(2): the separator word, such as ":", "=", etc.
611define uniq-pairs-by-first-component
612$(eval _upbfc_fc_set :=)\
613$(strip $(foreach w,$(1), $(eval _first := $(word 1,$(subst $(2),$(space),$(w))))\
614    $(if $(filter $(_upbfc_fc_set),$(_first)),,$(w)\
615        $(eval _upbfc_fc_set += $(_first)))))\
616$(eval _upbfc_fc_set :=)\
617$(eval _first:=)
618endef
619
620###########################################################
621## MODULE_TAG set operations
622###########################################################
623
624# Given a list of tags, return the targets that specify
625# any of those tags.
626# $(1): tag list
627define modules-for-tag-list
628$(sort $(foreach tag,$(1),$(ALL_MODULE_TAGS.$(tag))))
629endef
630
631# Same as modules-for-tag-list, but operates on
632# ALL_MODULE_NAME_TAGS.
633# $(1): tag list
634define module-names-for-tag-list
635$(sort $(foreach tag,$(1),$(ALL_MODULE_NAME_TAGS.$(tag))))
636endef
637
638# Given an accept and reject list, find the matching
639# set of targets.  If a target has multiple tags and
640# any of them are rejected, the target is rejected.
641# Reject overrides accept.
642# $(1): list of tags to accept
643# $(2): list of tags to reject
644#TODO(dbort): do $(if $(strip $(1)),$(1),$(ALL_MODULE_TAGS))
645#TODO(jbq): as of 20100106 nobody uses the second parameter
646define get-tagged-modules
647$(filter-out \
648	$(call modules-for-tag-list,$(2)), \
649	    $(call modules-for-tag-list,$(1)))
650endef
651
652###########################################################
653## Append a leaf to a base path.  Properly deals with
654## base paths ending in /.
655##
656## $(1): base path
657## $(2): leaf path
658###########################################################
659
660define append-path
661$(subst //,/,$(1)/$(2))
662endef
663
664
665###########################################################
666## Package filtering
667###########################################################
668
669# Given a list of installed modules (short or long names)
670# return a list of the packages (yes, .apk packages, not
671# modules in general) that are overridden by this list and,
672# therefore, should not be installed.
673# $(1): mixed list of installed modules
674# TODO: This is fragile; find a reliable way to get this information.
675define _get-package-overrides
676 $(eval ### Discard any words containing slashes, unless they end in .apk, \
677        ### in which case trim off the directory component and the suffix. \
678        ### If there are no slashes, keep the entire word.)
679 $(eval _gpo_names := $(subst /,@@@ @@@,$(1)))
680 $(eval _gpo_names := \
681     $(filter %.apk,$(_gpo_names)) \
682     $(filter-out %@@@ @@@%,$(_gpo_names)))
683 $(eval _gpo_names := $(patsubst %.apk,%,$(_gpo_names)))
684 $(eval _gpo_names := $(patsubst @@@%,%,$(_gpo_names)))
685
686 $(eval ### Remove any remaining words that contain dots.)
687 $(eval _gpo_names := $(subst .,@@@ @@@,$(_gpo_names)))
688 $(eval _gpo_names := $(filter-out %@@@ @@@%,$(_gpo_names)))
689
690 $(eval ### Now we have a list of any words that could possibly refer to \
691        ### packages, although there may be words that do not.  Only \
692        ### real packages will be present under PACKAGES.*, though.)
693 $(foreach _gpo_name,$(_gpo_names),$(PACKAGES.$(_gpo_name).OVERRIDES))
694endef
695
696define get-package-overrides
697$(sort $(strip $(call _get-package-overrides,$(1))))
698endef
699
700###########################################################
701## Output the command lines, or not
702###########################################################
703
704ifeq ($(strip $(SHOW_COMMANDS)),)
705define pretty
706@echo $1
707endef
708hide := @
709else
710define pretty
711endef
712hide :=
713endif
714
715###########################################################
716## Dump the variables that are associated with targets
717###########################################################
718
719define dump-module-variables
720@echo all_dependencies=$^
721@echo PRIVATE_YACCFLAGS=$(PRIVATE_YACCFLAGS);
722@echo PRIVATE_CFLAGS=$(PRIVATE_CFLAGS);
723@echo PRIVATE_CPPFLAGS=$(PRIVATE_CPPFLAGS);
724@echo PRIVATE_DEBUG_CFLAGS=$(PRIVATE_DEBUG_CFLAGS);
725@echo PRIVATE_C_INCLUDES=$(PRIVATE_C_INCLUDES);
726@echo PRIVATE_LDFLAGS=$(PRIVATE_LDFLAGS);
727@echo PRIVATE_LDLIBS=$(PRIVATE_LDLIBS);
728@echo PRIVATE_ARFLAGS=$(PRIVATE_ARFLAGS);
729@echo PRIVATE_AAPT_FLAGS=$(PRIVATE_AAPT_FLAGS);
730@echo PRIVATE_DX_FLAGS=$(PRIVATE_DX_FLAGS);
731@echo PRIVATE_JAVACFLAGS=$(PRIVATE_JAVACFLAGS);
732@echo PRIVATE_JAVA_LIBRARIES=$(PRIVATE_JAVA_LIBRARIES);
733@echo PRIVATE_ALL_SHARED_LIBRARIES=$(PRIVATE_ALL_SHARED_LIBRARIES);
734@echo PRIVATE_ALL_STATIC_LIBRARIES=$(PRIVATE_ALL_STATIC_LIBRARIES);
735@echo PRIVATE_ALL_WHOLE_STATIC_LIBRARIES=$(PRIVATE_ALL_WHOLE_STATIC_LIBRARIES);
736@echo PRIVATE_ALL_OBJECTS=$(PRIVATE_ALL_OBJECTS);
737@echo PRIVATE_NO_CRT=$(PRIVATE_NO_CRT);
738endef
739
740###########################################################
741## Commands for using sed to replace given variable values
742###########################################################
743
744define transform-variables
745@mkdir -p $(dir $@)
746@echo "Sed: $(if $(PRIVATE_MODULE),$(PRIVATE_MODULE),$@) <= $<"
747$(hide) sed $(foreach var,$(REPLACE_VARS),-e "s/{{$(var)}}/$(subst /,\/,$(PWD)/$($(var)))/g") $< >$@
748$(hide) if [ "$(suffix $@)" = ".sh" ]; then chmod a+rx $@; fi
749endef
750
751
752###########################################################
753## Commands for munging the dependency files GCC generates
754###########################################################
755# $(1): the input .d file
756# $(2): the output .P file
757define transform-d-to-p-args
758$(hide) cp $(1) $(2); \
759	sed -e 's/#.*//' -e 's/^[^:]*: *//' -e 's/ *\\$$//' \
760		-e '/^$$/ d' -e 's/$$/ :/' < $(1) >> $(2); \
761	rm -f $(1)
762endef
763
764define transform-d-to-p
765$(call transform-d-to-p-args,$(@:%.o=%.d),$(@:%.o=%.P))
766endef
767
768###########################################################
769## Commands for running lex
770###########################################################
771
772define transform-l-to-cpp
773@mkdir -p $(dir $@)
774@echo "Lex: $(PRIVATE_MODULE) <= $<"
775$(hide) $(LEX) -o$@ $<
776endef
777
778###########################################################
779## Commands for running yacc
780##
781## Because the extension of c++ files can change, the
782## extension must be specified in $1.
783## E.g, "$(call transform-y-to-cpp,.cpp)"
784###########################################################
785
786define transform-y-to-cpp
787@mkdir -p $(dir $@)
788@echo "Yacc: $(PRIVATE_MODULE) <= $<"
789$(YACC) $(PRIVATE_YACCFLAGS) -o $@ $<
790touch $(@:$1=$(YACC_HEADER_SUFFIX))
791echo '#ifndef '$(@F:$1=_h) > $(@:$1=.h)
792echo '#define '$(@F:$1=_h) >> $(@:$1=.h)
793cat $(@:$1=$(YACC_HEADER_SUFFIX)) >> $(@:$1=.h)
794echo '#endif' >> $(@:$1=.h)
795rm -f $(@:$1=$(YACC_HEADER_SUFFIX))
796endef
797
798###########################################################
799## Commands to compile RenderScript to Java
800###########################################################
801
802define transform-renderscripts-to-java-and-bc
803@echo "RenderScript: $(PRIVATE_MODULE) <= $(PRIVATE_RS_SOURCE_FILES)"
804$(hide) rm -rf $(PRIVATE_RS_OUTPUT_DIR)
805$(hide) mkdir -p $(PRIVATE_RS_OUTPUT_DIR)/res/raw
806$(hide) mkdir -p $(PRIVATE_RS_OUTPUT_DIR)/src
807$(hide) $(PRIVATE_RS_CC) \
808  -o $(PRIVATE_RS_OUTPUT_DIR)/res/raw \
809  -p $(PRIVATE_RS_OUTPUT_DIR)/src \
810  -d $(PRIVATE_RS_OUTPUT_DIR) \
811  -a $@ -MD \
812  $(addprefix -target-api , $(PRIVATE_RS_TARGET_API)) \
813  $(PRIVATE_RS_FLAGS) \
814  $(foreach inc,$(PRIVATE_RS_INCLUDES),$(addprefix -I , $(inc))) \
815  $(PRIVATE_RS_SOURCE_FILES)
816$(hide) mkdir -p $(dir $@)
817$(hide) touch $@
818endef
819
820define transform-bc-to-so
821@echo "Renderscript compatibility"
822$(hide) mkdir -p $(dir $@)
823$(hide) $(BCC_COMPAT) -O3 -o $(dir $@)/$(notdir $(<:.bc=.o)) -fPIC -shared \
824	-rt-path $(PRIVATE_LIBCLCORE) $<
825$(hide) $(PRIVATE_CXX) -shared -Wl,-soname,$(notdir $@) -nostdlib \
826	-Wl,-rpath,\$$ORIGIN/../lib \
827	$(dir $@)/$(notdir $(<:.bc=.o)) \
828	$(PRIVATE_COMPILER_RT) \
829	-o $@ -L prebuilts/gcc/ \
830	-L $(TARGET_OUT_INTERMEDIATE_LIBRARIES) -lRSSupport -lm
831endef
832
833###########################################################
834## Commands to compile RenderScript to C++
835###########################################################
836
837define transform-renderscripts-to-cpp-and-bc
838@echo "RenderScript: $(PRIVATE_MODULE) <= $(PRIVATE_RS_SOURCE_FILES)"
839$(hide) rm -rf $(PRIVATE_RS_OUTPUT_DIR)
840$(hide) mkdir -p $(PRIVATE_RS_OUTPUT_DIR)/
841$(hide) $(PRIVATE_RS_CC) \
842  -o $(PRIVATE_RS_OUTPUT_DIR)/ \
843  -d $(PRIVATE_RS_OUTPUT_DIR) \
844  -a $@ -MD \
845  -reflect-c++ \
846  $(PRIVATE_RS_FLAGS) \
847  $(foreach inc,$(PRIVATE_RS_INCLUDES),$(addprefix -I , $(inc))) \
848  $(PRIVATE_RS_SOURCE_FILES)
849$(hide) mkdir -p $(dir $@)
850$(hide) touch $@
851endef
852
853
854###########################################################
855## Commands for running aidl
856###########################################################
857
858define transform-aidl-to-java
859@mkdir -p $(dir $@)
860@echo "Aidl: $(PRIVATE_MODULE) <= $<"
861$(hide) $(AIDL) -d$(patsubst %.java,%.P,$@) $(PRIVATE_AIDL_FLAGS) $< $@
862endef
863#$(AIDL) $(PRIVATE_AIDL_FLAGS) $< - | indent -nut -br -npcs -l1000 > $@
864
865
866###########################################################
867## Commands for running java-event-log-tags.py
868###########################################################
869
870define transform-logtags-to-java
871@mkdir -p $(dir $@)
872@echo "logtags: $@ <= $<"
873$(hide) $(JAVATAGS) -o $@ $^
874endef
875
876
877###########################################################
878## Commands for running protoc to compile .proto into .java
879###########################################################
880
881define transform-proto-to-java
882@mkdir -p $(dir $@)
883@echo "Protoc: $@ <= $(PRIVATE_PROTO_SRC_FILES)"
884@rm -rf $(PRIVATE_PROTO_JAVA_OUTPUT_DIR)
885@mkdir -p $(PRIVATE_PROTO_JAVA_OUTPUT_DIR)
886$(hide) for f in $(PRIVATE_PROTO_SRC_FILES); do \
887        $(PROTOC) \
888        $(addprefix --proto_path=, $(PRIVATE_PROTO_INCLUDES)) \
889        $(PRIVATE_PROTO_JAVA_OUTPUT_OPTION)=$(PRIVATE_PROTO_JAVA_OUTPUT_DIR) \
890        $(PRIVATE_PROTOC_FLAGS) \
891        $$f || exit 33; \
892        done
893$(hide) touch $@
894endef
895
896######################################################################
897## Commands for running protoc to compile .proto into .pb.cc and .pb.h
898######################################################################
899define transform-proto-to-cc
900@mkdir -p $(dir $@)
901@echo "Protoc: $@ <= $<"
902$(hide) $(PROTOC) \
903	$(addprefix --proto_path=, $(PRIVATE_PROTO_INCLUDES)) \
904	$(PRIVATE_PROTOC_FLAGS) \
905	--cpp_out=$(PRIVATE_PROTO_CC_OUTPUT_DIR) $<
906endef
907
908
909###########################################################
910## Commands for running gcc to compile a C++ file
911###########################################################
912
913define transform-cpp-to-o
914@mkdir -p $(dir $@)
915@echo "target $(PRIVATE_ARM_MODE) C++: $(PRIVATE_MODULE) <= $<"
916$(hide) $(PRIVATE_CXX) \
917	$(addprefix -I , $(PRIVATE_C_INCLUDES)) \
918	$(shell cat $(PRIVATE_IMPORT_INCLUDES)) \
919	$(addprefix -isystem ,\
920	    $(if $(PRIVATE_NO_DEFAULT_COMPILER_FLAGS),, \
921	        $(filter-out $(PRIVATE_C_INCLUDES), \
922	            $(PRIVATE_TARGET_PROJECT_INCLUDES) \
923	            $(PRIVATE_TARGET_C_INCLUDES)))) \
924	-c \
925	$(if $(PRIVATE_NO_DEFAULT_COMPILER_FLAGS),, \
926	    $(PRIVATE_TARGET_GLOBAL_CFLAGS) \
927	    $(PRIVATE_TARGET_GLOBAL_CPPFLAGS) \
928	    $(PRIVATE_ARM_CFLAGS) \
929	 ) \
930	$(PRIVATE_RTTI_FLAG) \
931	$(PRIVATE_CFLAGS) \
932	$(PRIVATE_CPPFLAGS) \
933	$(PRIVATE_DEBUG_CFLAGS) \
934	-MD -MF $(patsubst %.o,%.d,$@) -o $@ $<
935$(transform-d-to-p)
936endef
937
938
939###########################################################
940## Commands for running gcc to compile a C file
941###########################################################
942
943# $(1): extra flags
944define transform-c-or-s-to-o-no-deps
945@mkdir -p $(dir $@)
946$(hide) $(PRIVATE_CC) \
947	$(addprefix -I , $(PRIVATE_C_INCLUDES)) \
948	$(shell cat $(PRIVATE_IMPORT_INCLUDES)) \
949	$(addprefix -isystem ,\
950	    $(if $(PRIVATE_NO_DEFAULT_COMPILER_FLAGS),, \
951	        $(filter-out $(PRIVATE_C_INCLUDES), \
952	            $(PRIVATE_TARGET_PROJECT_INCLUDES) \
953	            $(PRIVATE_TARGET_C_INCLUDES)))) \
954	-c \
955	$(if $(PRIVATE_NO_DEFAULT_COMPILER_FLAGS),, \
956	    $(PRIVATE_TARGET_GLOBAL_CFLAGS) \
957	    $(PRIVATE_ARM_CFLAGS) \
958	 ) \
959	 $(1) \
960	-MD -MF $(patsubst %.o,%.d,$@) -o $@ $<
961endef
962
963define transform-c-to-o-no-deps
964@echo "target $(PRIVATE_ARM_MODE) C: $(PRIVATE_MODULE) <= $<"
965$(call transform-c-or-s-to-o-no-deps, $(PRIVATE_CFLAGS) $(PRIVATE_CONLYFLAGS) $(PRIVATE_DEBUG_CFLAGS))
966endef
967
968define transform-s-to-o-no-deps
969@echo "target asm: $(PRIVATE_MODULE) <= $<"
970$(call transform-c-or-s-to-o-no-deps, $(PRIVATE_ASFLAGS))
971endef
972
973define transform-c-to-o
974$(transform-c-to-o-no-deps)
975$(transform-d-to-p)
976endef
977
978define transform-s-to-o
979$(transform-s-to-o-no-deps)
980$(transform-d-to-p)
981endef
982
983###########################################################
984## Commands for running gcc to compile an Objective-C file
985## This should never happen for target builds but this
986## will error at build time.
987###########################################################
988
989define transform-m-to-o-no-deps
990@echo "target ObjC: $(PRIVATE_MODULE) <= $<"
991$(call transform-c-or-s-to-o-no-deps, $(PRIVATE_CFLAGS) $(PRIVATE_DEBUG_CFLAGS))
992endef
993
994define transform-m-to-o
995$(transform-m-to-o-no-deps)
996$(transform-d-to-p)
997endef
998
999###########################################################
1000## Commands for running gcc to compile a host C++ file
1001###########################################################
1002
1003define transform-host-cpp-to-o
1004@mkdir -p $(dir $@)
1005@echo "host C++: $(PRIVATE_MODULE) <= $<"
1006$(hide) $(PRIVATE_CXX) \
1007	$(addprefix -I , $(PRIVATE_C_INCLUDES)) \
1008	$(shell cat $(PRIVATE_IMPORT_INCLUDES)) \
1009	$(addprefix -isystem ,\
1010	    $(if $(PRIVATE_NO_DEFAULT_COMPILER_FLAGS),, \
1011	        $(filter-out $(PRIVATE_C_INCLUDES), \
1012	            $(HOST_PROJECT_INCLUDES) \
1013	            $(HOST_C_INCLUDES)))) \
1014	-c \
1015	$(if $(PRIVATE_NO_DEFAULT_COMPILER_FLAGS),, \
1016	    $(HOST_GLOBAL_CFLAGS) \
1017	    $(HOST_GLOBAL_CPPFLAGS) \
1018	 ) \
1019	$(PRIVATE_CFLAGS) \
1020	$(PRIVATE_CPPFLAGS) \
1021	$(PRIVATE_DEBUG_CFLAGS) \
1022	-MD -MF $(patsubst %.o,%.d,$@) -o $@ $<
1023$(transform-d-to-p)
1024endef
1025
1026
1027###########################################################
1028## Commands for running gcc to compile a host C file
1029###########################################################
1030
1031# $(1): extra flags
1032define transform-host-c-or-s-to-o-no-deps
1033@mkdir -p $(dir $@)
1034$(hide) $(PRIVATE_CC) \
1035	$(addprefix -I , $(PRIVATE_C_INCLUDES)) \
1036	$(shell cat $(PRIVATE_IMPORT_INCLUDES)) \
1037	$(addprefix -isystem ,\
1038	    $(if $(PRIVATE_NO_DEFAULT_COMPILER_FLAGS),, \
1039	        $(filter-out $(PRIVATE_C_INCLUDES), \
1040	            $(HOST_PROJECT_INCLUDES) \
1041	            $(HOST_C_INCLUDES)))) \
1042	-c \
1043	$(if $(PRIVATE_NO_DEFAULT_COMPILER_FLAGS),, \
1044	    $(HOST_GLOBAL_CFLAGS) \
1045	 ) \
1046	$(1) \
1047	-MD -MF $(patsubst %.o,%.d,$@) -o $@ $<
1048endef
1049
1050define transform-host-c-to-o-no-deps
1051@echo "host C: $(PRIVATE_MODULE) <= $<"
1052$(call transform-host-c-or-s-to-o-no-deps, $(PRIVATE_CFLAGS) $(PRIVATE_CONLYFLAGS) $(PRIVATE_DEBUG_CFLAGS))
1053endef
1054
1055define transform-host-s-to-o-no-deps
1056@echo "host asm: $(PRIVATE_MODULE) <= $<"
1057$(call transform-host-c-or-s-to-o-no-deps, $(PRIVATE_ASFLAGS))
1058endef
1059
1060define transform-host-c-to-o
1061$(transform-host-c-to-o-no-deps)
1062$(transform-d-to-p)
1063endef
1064
1065define transform-host-s-to-o
1066$(transform-host-s-to-o-no-deps)
1067$(transform-d-to-p)
1068endef
1069
1070###########################################################
1071## Commands for running gcc to compile a host Objective-C file
1072###########################################################
1073
1074define transform-host-m-to-o-no-deps
1075@echo "host ObjC: $(PRIVATE_MODULE) <= $<"
1076$(call transform-host-c-or-s-to-o-no-deps, $(PRIVATE_CFLAGS) $(PRIVATE_DEBUG_CFLAGS))
1077endef
1078
1079define transform-host-m-to-o
1080$(transform-host-m-to-o-no-deps)
1081$(transform-d-to-p)
1082endef
1083
1084###########################################################
1085## Commands for running ar
1086###########################################################
1087
1088define _concat-if-arg2-not-empty
1089$(if $(2),$(hide) $(1) $(2))
1090endef
1091
1092# Split long argument list into smaller groups and call the command repeatedly
1093# Call the command at least once even if there are no arguments, as otherwise
1094# the output file won't be created.
1095#
1096# $(1): the command without arguments
1097# $(2): the arguments
1098define split-long-arguments
1099$(hide) $(1) $(wordlist 1,500,$(2))
1100$(call _concat-if-arg2-not-empty,$(1),$(wordlist 501,1000,$(2)))
1101$(call _concat-if-arg2-not-empty,$(1),$(wordlist 1001,1500,$(2)))
1102$(call _concat-if-arg2-not-empty,$(1),$(wordlist 1501,2000,$(2)))
1103$(call _concat-if-arg2-not-empty,$(1),$(wordlist 2001,2500,$(2)))
1104$(call _concat-if-arg2-not-empty,$(1),$(wordlist 2501,3000,$(2)))
1105$(call _concat-if-arg2-not-empty,$(1),$(wordlist 3001,99999,$(2)))
1106endef
1107
1108# $(1): the full path of the source static library.
1109define _extract-and-include-single-target-whole-static-lib
1110@echo "preparing StaticLib: $(PRIVATE_MODULE) [including $(1)]"
1111$(hide) ldir=$(PRIVATE_INTERMEDIATES_DIR)/WHOLE/$(basename $(notdir $(1)))_objs;\
1112    rm -rf $$ldir; \
1113    mkdir -p $$ldir; \
1114    filelist=; \
1115    for f in `$(TARGET_AR) t $(1)`; do \
1116        $(TARGET_AR) p $(1) $$f > $$ldir/$$f; \
1117        filelist="$$filelist $$ldir/$$f"; \
1118    done ; \
1119    $(TARGET_AR) $(TARGET_GLOBAL_ARFLAGS) $(PRIVATE_ARFLAGS) $@ $$filelist
1120
1121endef
1122
1123define extract-and-include-target-whole-static-libs
1124$(foreach lib,$(PRIVATE_ALL_WHOLE_STATIC_LIBRARIES), \
1125    $(call _extract-and-include-single-target-whole-static-lib, $(lib)))
1126endef
1127
1128# Explicitly delete the archive first so that ar doesn't
1129# try to add to an existing archive.
1130define transform-o-to-static-lib
1131@mkdir -p $(dir $@)
1132@rm -f $@
1133$(extract-and-include-target-whole-static-libs)
1134@echo "target StaticLib: $(PRIVATE_MODULE) ($@)"
1135$(call split-long-arguments,$(TARGET_AR) $(TARGET_GLOBAL_ARFLAGS) $(PRIVATE_ARFLAGS) $@,$(filter %.o, $^))
1136endef
1137
1138###########################################################
1139## Commands for running host ar
1140###########################################################
1141
1142# $(1): the full path of the source static library.
1143define _extract-and-include-single-host-whole-static-lib
1144@echo "preparing StaticLib: $(PRIVATE_MODULE) [including $(1)]"
1145$(hide) ldir=$(PRIVATE_INTERMEDIATES_DIR)/WHOLE/$(basename $(notdir $(1)))_objs;\
1146    rm -rf $$ldir; \
1147    mkdir -p $$ldir; \
1148    filelist=; \
1149    for f in `$(HOST_AR) t $(1) | \grep '\.o$$'`; do \
1150        $(HOST_AR) p $(1) $$f > $$ldir/$$f; \
1151        filelist="$$filelist $$ldir/$$f"; \
1152    done ; \
1153    $(HOST_AR) $(HOST_GLOBAL_ARFLAGS) $(PRIVATE_ARFLAGS) $@ $$filelist
1154
1155endef
1156
1157define extract-and-include-host-whole-static-libs
1158$(foreach lib,$(PRIVATE_ALL_WHOLE_STATIC_LIBRARIES), \
1159    $(call _extract-and-include-single-host-whole-static-lib, $(lib)))
1160endef
1161
1162# Explicitly delete the archive first so that ar doesn't
1163# try to add to an existing archive.
1164define transform-host-o-to-static-lib
1165@mkdir -p $(dir $@)
1166@rm -f $@
1167$(extract-and-include-host-whole-static-libs)
1168@echo "host StaticLib: $(PRIVATE_MODULE) ($@)"
1169$(call split-long-arguments,$(HOST_AR) $(HOST_GLOBAL_ARFLAGS) $(PRIVATE_ARFLAGS) $@,$(filter %.o, $^))
1170endef
1171
1172
1173###########################################################
1174## Commands for running gcc to link a shared library or package
1175###########################################################
1176
1177# ld just seems to be so finicky with command order that we allow
1178# it to be overriden en-masse see combo/linux-arm.make for an example.
1179ifneq ($(HOST_CUSTOM_LD_COMMAND),true)
1180define transform-host-o-to-shared-lib-inner
1181$(hide) $(PRIVATE_CXX) \
1182	-Wl,-rpath-link=$(HOST_OUT_INTERMEDIATE_LIBRARIES) \
1183	-Wl,-rpath,\$$ORIGIN/../lib \
1184	-shared -Wl,-soname,$(notdir $@) \
1185	$(PRIVATE_LDFLAGS) \
1186	$(HOST_GLOBAL_LD_DIRS) \
1187	$(if $(PRIVATE_NO_DEFAULT_COMPILER_FLAGS),, \
1188	   $(HOST_GLOBAL_LDFLAGS) \
1189	) \
1190	$(PRIVATE_ALL_OBJECTS) \
1191	-Wl,--whole-archive \
1192	$(call normalize-host-libraries,$(PRIVATE_ALL_WHOLE_STATIC_LIBRARIES)) \
1193	-Wl,--no-whole-archive \
1194	$(if $(PRIVATE_GROUP_STATIC_LIBRARIES),-Wl$(comma)--start-group) \
1195	$(call normalize-host-libraries,$(PRIVATE_ALL_STATIC_LIBRARIES)) \
1196	$(if $(PRIVATE_GROUP_STATIC_LIBRARIES),-Wl$(comma)--end-group) \
1197	$(call normalize-host-libraries,$(PRIVATE_ALL_SHARED_LIBRARIES)) \
1198	-o $@ \
1199	$(PRIVATE_LDLIBS)
1200endef
1201endif
1202
1203define transform-host-o-to-shared-lib
1204@mkdir -p $(dir $@)
1205@echo "host SharedLib: $(PRIVATE_MODULE) ($@)"
1206$(transform-host-o-to-shared-lib-inner)
1207endef
1208
1209define transform-host-o-to-package
1210@mkdir -p $(dir $@)
1211@echo "host Package: $(PRIVATE_MODULE) ($@)"
1212$(transform-host-o-to-shared-lib-inner)
1213endef
1214
1215
1216###########################################################
1217## Commands for running gcc to link a shared library or package
1218###########################################################
1219
1220#echo >$@.vers "{"; \
1221#echo >>$@.vers " global:"; \
1222#$(BUILD_SYSTEM)/filter_symbols.sh $(TARGET_NM) "  " ";" $(filter %.o,$^) | sort -u >>$@.vers; \
1223#echo >>$@.vers " local:"; \
1224#echo >>$@.vers "  *;"; \
1225#echo >>$@.vers "};"; \
1226
1227#	-Wl,--version-script=$@.vers \
1228
1229# ld just seems to be so finicky with command order that we allow
1230# it to be overriden en-masse see combo/linux-arm.make for an example.
1231ifneq ($(TARGET_CUSTOM_LD_COMMAND),true)
1232define transform-o-to-shared-lib-inner
1233$(hide) $(PRIVATE_CXX) \
1234	$(PRIVATE_TARGET_GLOBAL_LDFLAGS) \
1235	-Wl,-rpath-link=$(TARGET_OUT_INTERMEDIATE_LIBRARIES) \
1236	-Wl,-rpath,\$$ORIGIN/../lib \
1237	-shared -Wl,-soname,$(notdir $@) \
1238	$(PRIVATE_LDFLAGS) \
1239	$(PRIVATE_TARGET_GLOBAL_LD_DIRS) \
1240	$(PRIVATE_ALL_OBJECTS) \
1241	-Wl,--whole-archive \
1242	$(call normalize-target-libraries,$(PRIVATE_ALL_WHOLE_STATIC_LIBRARIES)) \
1243	-Wl,--no-whole-archive \
1244	$(if $(PRIVATE_GROUP_STATIC_LIBRARIES),-Wl$(comma)--start-group) \
1245	$(call normalize-target-libraries,$(PRIVATE_ALL_STATIC_LIBRARIES)) \
1246	$(if $(PRIVATE_GROUP_STATIC_LIBRARIES),-Wl$(comma)--end-group) \
1247	$(call normalize-target-libraries,$(PRIVATE_ALL_SHARED_LIBRARIES)) \
1248	-o $@ \
1249	$(PRIVATE_LDLIBS)
1250endef
1251endif
1252
1253define transform-o-to-shared-lib
1254@mkdir -p $(dir $@)
1255@echo "target SharedLib: $(PRIVATE_MODULE) ($@)"
1256$(transform-o-to-shared-lib-inner)
1257endef
1258
1259define transform-o-to-package
1260@mkdir -p $(dir $@)
1261@echo "target Package: $(PRIVATE_MODULE) ($@)"
1262$(transform-o-to-shared-lib-inner)
1263endef
1264
1265
1266###########################################################
1267## Commands for filtering a target executable or library
1268###########################################################
1269
1270define transform-to-stripped
1271@mkdir -p $(dir $@)
1272@echo "target Strip: $(PRIVATE_MODULE) ($@)"
1273$(hide) $(TARGET_STRIP_COMMAND)
1274endef
1275
1276
1277###########################################################
1278## Commands for running gcc to link an executable
1279###########################################################
1280
1281ifneq ($(TARGET_CUSTOM_LD_COMMAND),true)
1282define transform-o-to-executable-inner
1283$(hide) $(PRIVATE_CXX) \
1284	$(PRIVATE_TARGET_GLOBAL_LDFLAGS) \
1285	$(PRIVATE_TARGET_GLOBAL_LD_DIRS) \
1286	-Wl,-rpath-link=$(TARGET_OUT_INTERMEDIATE_LIBRARIES) \
1287	-Wl,-rpath,\$$ORIGIN/../lib \
1288	$(PRIVATE_LDFLAGS) \
1289	$(PRIVATE_ALL_OBJECTS) \
1290	-Wl,--whole-archive \
1291	$(call normalize-target-libraries,$(PRIVATE_ALL_WHOLE_STATIC_LIBRARIES)) \
1292	-Wl,--no-whole-archive \
1293	$(if $(PRIVATE_GROUP_STATIC_LIBRARIES),-Wl$(comma)--start-group) \
1294	$(call normalize-target-libraries,$(PRIVATE_ALL_STATIC_LIBRARIES)) \
1295	$(if $(PRIVATE_GROUP_STATIC_LIBRARIES),-Wl$(comma)--end-group) \
1296	$(call normalize-target-libraries,$(PRIVATE_ALL_SHARED_LIBRARIES)) \
1297	-o $@ \
1298	$(PRIVATE_LDLIBS)
1299endef
1300endif
1301
1302define transform-o-to-executable
1303@mkdir -p $(dir $@)
1304@echo "target Executable: $(PRIVATE_MODULE) ($@)"
1305$(transform-o-to-executable-inner)
1306endef
1307
1308
1309###########################################################
1310## Commands for running gcc to link a statically linked
1311## executable.  In practice, we only use this on arm, so
1312## the other platforms don't have the
1313## transform-o-to-static-executable defined
1314###########################################################
1315
1316ifneq ($(TARGET_CUSTOM_LD_COMMAND),true)
1317define transform-o-to-static-executable-inner
1318endef
1319endif
1320
1321define transform-o-to-static-executable
1322@mkdir -p $(dir $@)
1323@echo "target StaticExecutable: $(PRIVATE_MODULE) ($@)"
1324$(transform-o-to-static-executable-inner)
1325endef
1326
1327
1328###########################################################
1329## Commands for running gcc to link a host executable
1330###########################################################
1331
1332ifneq ($(HOST_CUSTOM_LD_COMMAND),true)
1333define transform-host-o-to-executable-inner
1334$(hide) $(PRIVATE_CXX) \
1335	$(PRIVATE_ALL_OBJECTS) \
1336	-Wl,--whole-archive \
1337	$(call normalize-host-libraries,$(PRIVATE_ALL_WHOLE_STATIC_LIBRARIES)) \
1338	-Wl,--no-whole-archive \
1339	$(if $(PRIVATE_GROUP_STATIC_LIBRARIES),-Wl$(comma)--start-group) \
1340	$(call normalize-host-libraries,$(PRIVATE_ALL_STATIC_LIBRARIES)) \
1341	$(if $(PRIVATE_GROUP_STATIC_LIBRARIES),-Wl$(comma)--end-group) \
1342	$(call normalize-host-libraries,$(PRIVATE_ALL_SHARED_LIBRARIES)) \
1343	-Wl,-rpath-link=$(HOST_OUT_INTERMEDIATE_LIBRARIES) \
1344	-Wl,-rpath,\$$ORIGIN/../lib \
1345	$(HOST_GLOBAL_LD_DIRS) \
1346	$(PRIVATE_LDFLAGS) \
1347	$(if $(PRIVATE_NO_DEFAULT_COMPILER_FLAGS),, \
1348		$(HOST_GLOBAL_LDFLAGS) \
1349	) \
1350	-o $@ \
1351	$(PRIVATE_LDLIBS)
1352endef
1353endif
1354
1355define transform-host-o-to-executable
1356@mkdir -p $(dir $@)
1357@echo "host Executable: $(PRIVATE_MODULE) ($@)"
1358$(transform-host-o-to-executable-inner)
1359endef
1360
1361
1362###########################################################
1363## Commands for running javac to make .class files
1364###########################################################
1365
1366#@echo "Source intermediates dir: $(PRIVATE_SOURCE_INTERMEDIATES_DIR)"
1367#@echo "Source intermediates: $$(find $(PRIVATE_SOURCE_INTERMEDIATES_DIR) -name '*.java')"
1368
1369# TODO: Right now we generate the asset resources twice, first as part
1370# of generating the Java classes, then at the end when packaging the final
1371# assets.  This should be changed to do one of two things: (1) Don't generate
1372# any resource files the first time, only create classes during that stage;
1373# or (2) Don't use the -c flag with the second stage, instead taking the
1374# resource files from the first stage as additional input.  My original intent
1375# was to use approach (2), but this requires a little more work in the tool.
1376# Maybe we should just use approach (1).
1377
1378# This rule creates the R.java and Manifest.java files, both of which
1379# are PRODUCT-neutral.  Don't pass PRIVATE_PRODUCT_AAPT_CONFIG to this invocation.
1380define create-resource-java-files
1381@mkdir -p $(PRIVATE_SOURCE_INTERMEDIATES_DIR)
1382@mkdir -p $(dir $(PRIVATE_RESOURCE_PUBLICS_OUTPUT))
1383$(hide) $(AAPT) package $(PRIVATE_AAPT_FLAGS) -m \
1384    $(eval # PRIVATE_PRODUCT_AAPT_CONFIG is intentionally missing-- see comment.) \
1385    $(addprefix -J , $(PRIVATE_SOURCE_INTERMEDIATES_DIR)) \
1386    $(addprefix -M , $(PRIVATE_ANDROID_MANIFEST)) \
1387    $(addprefix -P , $(PRIVATE_RESOURCE_PUBLICS_OUTPUT)) \
1388    $(addprefix -S , $(PRIVATE_RESOURCE_DIR)) \
1389    $(addprefix -A , $(PRIVATE_ASSET_DIR)) \
1390    $(addprefix -I , $(PRIVATE_AAPT_INCLUDES)) \
1391    $(addprefix -G , $(PRIVATE_PROGUARD_OPTIONS_FILE)) \
1392    $(addprefix --min-sdk-version , $(PRIVATE_DEFAULT_APP_TARGET_SDK)) \
1393    $(addprefix --target-sdk-version , $(PRIVATE_DEFAULT_APP_TARGET_SDK)) \
1394    $(if $(filter --version-code,$(PRIVATE_AAPT_FLAGS)),,$(addprefix --version-code , $(PLATFORM_SDK_VERSION))) \
1395    $(if $(filter --version-name,$(PRIVATE_AAPT_FLAGS)),,$(addprefix --version-name , $(PLATFORM_VERSION)-$(BUILD_NUMBER))) \
1396    $(addprefix --rename-manifest-package , $(PRIVATE_MANIFEST_PACKAGE_NAME)) \
1397    $(addprefix --rename-instrumentation-target-package , $(PRIVATE_MANIFEST_INSTRUMENTATION_FOR))
1398endef
1399
1400ifeq ($(HOST_OS),windows)
1401xlint_unchecked :=
1402else
1403xlint_unchecked := -Xlint:unchecked
1404endif
1405
1406ifeq (true, $(ENABLE_INCREMENTALJAVAC))
1407incremental_dex := --incremental
1408else
1409incremental_dex :=
1410endif
1411
1412# emit-line, <word list>, <output file>
1413define emit-line
1414   $(if $(1),echo -n '$(strip $(1)) ' >> $(2))
1415endef
1416
1417# dump-words-to-file, <word list>, <output file>
1418define dump-words-to-file
1419        @rm -f $(2)
1420        @$(call emit-line,$(wordlist 1,200,$(1)),$(2))
1421        @$(call emit-line,$(wordlist 201,400,$(1)),$(2))
1422        @$(call emit-line,$(wordlist 401,600,$(1)),$(2))
1423        @$(call emit-line,$(wordlist 601,800,$(1)),$(2))
1424        @$(call emit-line,$(wordlist 801,1000,$(1)),$(2))
1425        @$(call emit-line,$(wordlist 1001,1200,$(1)),$(2))
1426        @$(call emit-line,$(wordlist 1201,1400,$(1)),$(2))
1427        @$(call emit-line,$(wordlist 1401,1600,$(1)),$(2))
1428        @$(call emit-line,$(wordlist 1601,1800,$(1)),$(2))
1429        @$(call emit-line,$(wordlist 1801,2000,$(1)),$(2))
1430        @$(call emit-line,$(wordlist 2001,2200,$(1)),$(2))
1431        @$(call emit-line,$(wordlist 2201,2400,$(1)),$(2))
1432        @$(call emit-line,$(wordlist 2401,2600,$(1)),$(2))
1433        @$(call emit-line,$(wordlist 2601,2800,$(1)),$(2))
1434        @$(call emit-line,$(wordlist 2801,3000,$(1)),$(2))
1435        @$(call emit-line,$(wordlist 3001,3200,$(1)),$(2))
1436        @$(call emit-line,$(wordlist 3201,3400,$(1)),$(2))
1437        @$(call emit-line,$(wordlist 3401,3600,$(1)),$(2))
1438        @$(call emit-line,$(wordlist 3601,3800,$(1)),$(2))
1439        @$(call emit-line,$(wordlist 3801,4000,$(1)),$(2))
1440        @$(call emit-line,$(wordlist 4001,4200,$(1)),$(2))
1441        @$(call emit-line,$(wordlist 4201,4400,$(1)),$(2))
1442        @$(call emit-line,$(wordlist 4401,4600,$(1)),$(2))
1443        @$(call emit-line,$(wordlist 4601,4800,$(1)),$(2))
1444        @$(call emit-line,$(wordlist 4801,5000,$(1)),$(2))
1445        @$(if $(wordlist 5001,5002,$(1)),$(error Too many words ($(words $(1)))))
1446endef
1447
1448# For a list of jar files, unzip them to a specified directory,
1449# but make sure that no META-INF files come along for the ride.
1450#
1451# $(1): files to unzip
1452# $(2): destination directory
1453define unzip-jar-files
1454  $(hide) for f in $(1); \
1455  do \
1456    if [ ! -f $$f ]; then \
1457      echo Missing file $$f; \
1458      exit 1; \
1459    fi; \
1460    unzip -qo $$f -d $(2); \
1461  done \
1462  $(if $(PRIVATE_DONT_DELETE_JAR_META_INF),,;rm -rf $(2)/META-INF)
1463endef
1464
1465# Common definition to invoke javac on the host and target.
1466#
1467# Some historical notes:
1468# - below we write the list of java files to java-source-list to avoid argument
1469#   list length problems with Cygwin
1470# - we filter out duplicate java file names because eclipse's compiler
1471#   doesn't like them.
1472#
1473# $(1): javac
1474# $(2): bootclasspath
1475define compile-java
1476$(hide) rm -f $@
1477$(hide) rm -rf $(PRIVATE_CLASS_INTERMEDIATES_DIR)
1478$(hide) mkdir -p $(dir $@)
1479$(hide) mkdir -p $(PRIVATE_CLASS_INTERMEDIATES_DIR)
1480$(call unzip-jar-files,$(PRIVATE_STATIC_JAVA_LIBRARIES),$(PRIVATE_CLASS_INTERMEDIATES_DIR))
1481$(call dump-words-to-file,$(PRIVATE_JAVA_SOURCES),$(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list)
1482$(hide) if [ -d "$(PRIVATE_SOURCE_INTERMEDIATES_DIR)" ]; then \
1483	    find $(PRIVATE_SOURCE_INTERMEDIATES_DIR) -name '*.java' >> $(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list; \
1484fi
1485$(hide) tr ' ' '\n' < $(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list \
1486    | sort -u > $(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list-uniq
1487$(hide) if [ -s $(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list-uniq ] ; then \
1488    $(1) -encoding UTF-8 \
1489    $(strip $(PRIVATE_JAVAC_DEBUG_FLAGS)) \
1490    $(if $(findstring true,$(PRIVATE_WARNINGS_ENABLE)),$(xlint_unchecked),) \
1491    $(2) \
1492    $(addprefix -classpath ,$(strip \
1493        $(call normalize-path-list,$(PRIVATE_ALL_JAVA_LIBRARIES)))) \
1494    $(if $(findstring true,$(PRIVATE_WARNINGS_ENABLE)),$(xlint_unchecked),) \
1495    -extdirs "" -d $(PRIVATE_CLASS_INTERMEDIATES_DIR) \
1496    $(PRIVATE_JAVACFLAGS) \
1497    \@$(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list-uniq \
1498    || ( rm -rf $(PRIVATE_CLASS_INTERMEDIATES_DIR) ; exit 41 ) \
1499fi
1500$(if $(PRIVATE_JAVA_LAYERS_FILE), $(hide) build/tools/java-layers.py \
1501    $(PRIVATE_JAVA_LAYERS_FILE) \@$(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list-uniq,)
1502$(hide) rm -f $(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list
1503$(hide) rm -f $(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list-uniq
1504$(if $(PRIVATE_JAR_EXCLUDE_FILES), $(hide) find $(PRIVATE_CLASS_INTERMEDIATES_DIR) \
1505    -name $(word 1, $(PRIVATE_JAR_EXCLUDE_FILES)) \
1506    $(addprefix -o -name , $(wordlist 2, 999, $(PRIVATE_JAR_EXCLUDE_FILES))) \
1507    | xargs rm -rf)
1508$(hide) jar $(if $(strip $(PRIVATE_JAR_MANIFEST)),-cfm,-cf) \
1509    $@ $(PRIVATE_JAR_MANIFEST) -C $(PRIVATE_CLASS_INTERMEDIATES_DIR) .
1510endef
1511
1512define transform-java-to-classes.jar
1513@echo "target Java: $(PRIVATE_MODULE) ($(PRIVATE_CLASS_INTERMEDIATES_DIR))"
1514$(call compile-java,$(TARGET_JAVAC),$(PRIVATE_BOOTCLASSPATH))
1515endef
1516
1517# Override the above definitions if we want to do incremetal javac
1518ifeq (true, $(ENABLE_INCREMENTALJAVAC))
1519define compile-java
1520$(hide) mkdir -p $(dir $@)
1521$(hide) mkdir -p $(PRIVATE_CLASS_INTERMEDIATES_DIR)
1522$(hide) touch $(PRIVATE_CLASS_INTERMEDIATES_DIR)/newstamp
1523$(call unzip-jar-files,$(PRIVATE_STATIC_JAVA_LIBRARIES),$(PRIVATE_CLASS_INTERMEDIATES_DIR))
1524$(hide) if [ -e $(PRIVATE_CLASS_INTERMEDIATES_DIR)/stamp ] ; then \
1525        newerFlag=$$(echo -n "-newer $(PRIVATE_CLASS_INTERMEDIATES_DIR)/stamp") ; \
1526    fi ; \
1527    find $(PRIVATE_JAVA_SOURCES) $$newerFlag > $(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list ; \
1528    if [ -d "$(PRIVATE_SOURCE_INTERMEDIATES_DIR)" ]; then \
1529        find $(PRIVATE_SOURCE_INTERMEDIATES_DIR) -name '*.java' $$newerFlag >> $(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list; \
1530    fi
1531$(hide) tr ' ' '\n' < $(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list \
1532    | sort -u > $(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list-uniq
1533@echo "(Incremental) build source files:"
1534@cat $(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list-uniq
1535$(hide) if [ -s $(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list-uniq ] ; then \
1536    $(1) -encoding UTF-8 \
1537    $(strip $(PRIVATE_JAVAC_DEBUG_FLAGS)) \
1538    $(if $(findstring true,$(PRIVATE_WARNINGS_ENABLE)),$(xlint_unchecked),) \
1539    $(2) \
1540    $(addprefix -classpath ,$(strip \
1541        $(call normalize-path-list,$(PRIVATE_ALL_JAVA_LIBRARIES) $(PRIVATE_CLASS_INTERMEDIATES_DIR)))) \
1542    $(if $(findstring true,$(PRIVATE_WARNINGS_ENABLE)),$(xlint_unchecked),) \
1543    -extdirs "" -d $(PRIVATE_CLASS_INTERMEDIATES_DIR) \
1544    $(PRIVATE_JAVACFLAGS) \
1545    \@$(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list-uniq \
1546    || ( exit 41 ) \
1547fi
1548$(hide) rm -f $(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list
1549$(hide) rm -f $(PRIVATE_CLASS_INTERMEDIATES_DIR)/java-source-list-uniq
1550$(hide) rm -f $@
1551$(if $(PRIVATE_JAR_EXCLUDE_FILES), $(hide) find $(PRIVATE_CLASS_INTERMEDIATES_DIR) \
1552    -name $(word 1, $(PRIVATE_JAR_EXCLUDE_FILES)) \
1553    $(addprefix -o -name , $(wordlist 2, 999, $(PRIVATE_JAR_EXCLUDE_FILES))) \
1554    | xargs rm -rf)
1555$(hide) jar $(if $(strip $(PRIVATE_JAR_MANIFEST)),-cfm,-cf) \
1556    $@ $(PRIVATE_JAR_MANIFEST) -C $(PRIVATE_CLASS_INTERMEDIATES_DIR) .
1557$(hide) mv $(PRIVATE_CLASS_INTERMEDIATES_DIR)/newstamp $(PRIVATE_CLASS_INTERMEDIATES_DIR)/stamp
1558endef
1559
1560define transform-java-to-classes.jar
1561@echo "target Java: $(PRIVATE_MODULE) ($(PRIVATE_CLASS_INTERMEDIATES_DIR))"
1562$(call compile-java,$(TARGET_JAVAC),$(PRIVATE_BOOTCLASSPATH))
1563endef
1564endif # ENABLE_INCREMENTALJAVAC
1565
1566define transform-classes.jar-to-emma
1567$(hide) java -classpath $(EMMA_JAR) emma instr -outmode fullcopy -outfile \
1568    $(PRIVATE_EMMA_COVERAGE_FILE) -ip $< -d $(PRIVATE_EMMA_INTERMEDIATES_DIR) \
1569    $(addprefix -ix , $(PRIVATE_EMMA_COVERAGE_FILTER))
1570endef
1571
1572#TODO: use a smaller -Xmx value for most libraries;
1573#      only core.jar and framework.jar need a heap this big.
1574# Avoid the memory arguments on Windows, dx fails to load for some reason with them.
1575define transform-classes.jar-to-dex
1576@echo "target Dex: $(PRIVATE_MODULE)"
1577@mkdir -p $(dir $@)
1578$(hide) $(DX) \
1579    $(if $(findstring windows,$(HOST_OS)),,-JXms16M -JXmx2048M) \
1580    --dex --output=$@ \
1581    $(incremental_dex) \
1582    $(if $(NO_OPTIMIZE_DX), \
1583        --no-optimize) \
1584    $(if $(GENERATE_DEX_DEBUG), \
1585	    --debug --verbose \
1586	    --dump-to=$(@:.dex=.lst) \
1587	    --dump-width=1000) \
1588    $(PRIVATE_DX_FLAGS) \
1589    $<
1590endef
1591
1592# Create a mostly-empty .jar file that we'll add to later.
1593# The MacOS jar tool doesn't like creating empty jar files,
1594# so we need to give it something.
1595define create-empty-package
1596@mkdir -p $(dir $@)
1597$(hide) touch $(dir $@)/dummy
1598$(hide) (cd $(dir $@) && jar cf $(notdir $@) dummy)
1599$(hide) zip -qd $@ dummy
1600$(hide) rm $(dir $@)/dummy
1601endef
1602
1603#TODO: we kinda want to build different asset packages for
1604#      different configurations, then combine them later (or something).
1605#      Per-locale, etc.
1606#      A list of dynamic and static parameters;  build layers for
1607#      dynamic params that lay over the static ones.
1608#TODO: update the manifest to point to the package file
1609#Note that the version numbers are given to aapt as simple default
1610#values; applications can override these by explicitly stating
1611#them in their manifest.
1612define add-assets-to-package
1613$(hide) $(AAPT) package -u $(PRIVATE_AAPT_FLAGS) \
1614    $(addprefix -c , $(PRIVATE_PRODUCT_AAPT_CONFIG)) \
1615    $(addprefix --preferred-configurations , $(PRIVATE_PRODUCT_AAPT_PREF_CONFIG)) \
1616    $(addprefix -M , $(PRIVATE_ANDROID_MANIFEST)) \
1617    $(addprefix -S , $(PRIVATE_RESOURCE_DIR)) \
1618    $(addprefix -A , $(PRIVATE_ASSET_DIR)) \
1619    $(addprefix -I , $(PRIVATE_AAPT_INCLUDES)) \
1620    $(addprefix --min-sdk-version , $(PRIVATE_DEFAULT_APP_TARGET_SDK)) \
1621    $(addprefix --target-sdk-version , $(PRIVATE_DEFAULT_APP_TARGET_SDK)) \
1622    $(addprefix --product , $(TARGET_AAPT_CHARACTERISTICS)) \
1623    $(if $(filter --version-code,$(PRIVATE_AAPT_FLAGS)),,$(addprefix --version-code , $(PLATFORM_SDK_VERSION))) \
1624    $(if $(filter --version-name,$(PRIVATE_AAPT_FLAGS)),,$(addprefix --version-name , $(PLATFORM_VERSION)-$(BUILD_NUMBER))) \
1625    $(addprefix --rename-manifest-package , $(PRIVATE_MANIFEST_PACKAGE_NAME)) \
1626    $(addprefix --rename-instrumentation-target-package , $(PRIVATE_MANIFEST_INSTRUMENTATION_FOR)) \
1627    -F $@
1628endef
1629
1630define add-jni-shared-libs-to-package
1631$(hide) rm -rf $(dir $@)lib
1632$(hide) mkdir -p $(dir $@)lib/$(PRIVATE_JNI_SHARED_LIBRARIES_ABI)
1633$(hide) cp $(PRIVATE_JNI_SHARED_LIBRARIES) $(dir $@)lib/$(PRIVATE_JNI_SHARED_LIBRARIES_ABI)
1634$(hide) (cd $(dir $@) && zip -r $(notdir $@) lib)
1635$(hide) rm -rf $(dir $@)lib
1636endef
1637
1638#TODO: update the manifest to point to the dex file
1639define add-dex-to-package
1640$(if $(filter classes.dex,$(notdir $(PRIVATE_DEX_FILE))),\
1641$(hide) $(AAPT) add -k $@ $(PRIVATE_DEX_FILE),\
1642$(hide) _adtp_classes_dex=$(dir $(PRIVATE_DEX_FILE))classes.dex; \
1643cp $(PRIVATE_DEX_FILE) $$_adtp_classes_dex && \
1644$(AAPT) add -k $@ $$_adtp_classes_dex && rm -f $$_adtp_classes_dex)
1645endef
1646
1647# Add java resources added by the current module.
1648#
1649define add-java-resources-to-package
1650$(call dump-words-to-file, $(PRIVATE_EXTRA_JAR_ARGS), $(dir $@)jar-arg-list)
1651$(hide) jar uf $@ @$(dir $@)jar-arg-list
1652@rm -f $(dir $@)jar-arg-list
1653endef
1654
1655# Add java resources carried by static Java libraries.
1656#
1657define add-carried-java-resources
1658$(hide) if [ -d $(PRIVATE_CLASS_INTERMEDIATES_DIR) ] ; then \
1659    java_res_jar_flags=$$(find $(PRIVATE_CLASS_INTERMEDIATES_DIR) -type f -a -not -name "*.class" \
1660        | sed -e "s?^$(PRIVATE_CLASS_INTERMEDIATES_DIR)/? -C $(PRIVATE_CLASS_INTERMEDIATES_DIR) ?"); \
1661    if [ -n "$$java_res_jar_flags" ] ; then \
1662        echo $$java_res_jar_flags >$(dir $@)java_res_jar_flags; \
1663        jar uf $@ $$java_res_jar_flags; \
1664    fi; \
1665fi
1666endef
1667
1668# Sign a package using the specified key/cert.
1669#
1670define sign-package
1671$(hide) mv $@ $@.unsigned
1672$(hide) java -jar $(SIGNAPK_JAR) \
1673    $(PRIVATE_CERTIFICATE) $(PRIVATE_PRIVATE_KEY) \
1674    $(PRIVATE_ADDITIONAL_CERTIFICATES) $@.unsigned $@.signed
1675$(hide) mv $@.signed $@
1676endef
1677
1678# Align STORED entries of a package on 4-byte boundaries
1679# to make them easier to mmap.
1680#
1681define align-package
1682$(hide) mv $@ $@.unaligned
1683$(hide) $(ZIPALIGN) -f 4 $@.unaligned $@.aligned
1684$(hide) mv $@.aligned $@
1685endef
1686
1687define install-dex-debug
1688$(hide) if [ -f "$(PRIVATE_INTERMEDIATES_DIR)/classes.dex" ]; then \
1689	    mkdir -p $(TOP)/dalvik/DEBUG-FILES; \
1690	    $(ACP) $(PRIVATE_INTERMEDIATES_DIR)/classes.dex \
1691		$(TOP)/dalvik/DEBUG-FILES/$(PRIVATE_MODULE).dex; \
1692	fi
1693$(hide) if [ -f "$(PRIVATE_INTERMEDIATES_DIR)/classes.lst" ]; then \
1694	    mkdir -p $(TOP)/dalvik/DEBUG-FILES; \
1695	    $(ACP) $(PRIVATE_INTERMEDIATES_DIR)/classes.lst \
1696		$(TOP)/dalvik/DEBUG-FILES/$(PRIVATE_MODULE).lst; \
1697	fi
1698endef
1699
1700# TODO(joeo): If we can ever upgrade to post 3.81 make and get the
1701# new prebuilt rules to work, we should change this to copy the
1702# resources to the out directory and then copy the resources.
1703
1704# Note: we intentionally don't clean PRIVATE_CLASS_INTERMEDIATES_DIR
1705# in transform-java-to-classes for the sake of vm-tests.
1706define transform-host-java-to-package
1707@echo "host Java: $(PRIVATE_MODULE) ($(PRIVATE_CLASS_INTERMEDIATES_DIR))"
1708$(call compile-java,$(HOST_JAVAC),$(PRIVATE_BOOTCLASSPATH))
1709$(if $(PRIVATE_EXTRA_JAR_ARGS), $(call add-java-resources-to-package))
1710endef
1711
1712###########################################################
1713## Obfuscate a jar file
1714###########################################################
1715
1716# PRIVATE_KEEP_FILE is a file containing a list of classes
1717# PRIVATE_INTERMEDIATES_DIR is a directory we can use for temporary files
1718# The module using this must depend on
1719#        $(HOST_OUT_JAVA_LIBRARIES)/proguard-4.0.1.jar
1720define obfuscate-jar
1721@echo "Obfuscate jar: $(notdir $@) ($@)"
1722@mkdir -p $(dir $@)
1723@rm -f $@
1724@mkdir -p $(PRIVATE_INTERMEDIATES_DIR)
1725$(hide) sed -e 's/^/-keep class /' < $(PRIVATE_KEEP_FILE) > \
1726		$(PRIVATE_INTERMEDIATES_DIR)/keep.pro
1727$(hide) java -Xmx512M -jar $(HOST_OUT_JAVA_LIBRARIES)/proguard-4.0.1.jar \
1728		-injars $< \
1729		-outjars $@ \
1730		-target 1.5 \
1731		-dontnote -dontwarn \
1732		-printmapping $(PRIVATE_INTERMEDIATES_DIR)/out.map \
1733		-forceprocessing \
1734		-renamesourcefileattribute SourceFile \
1735		-keepattributes Exceptions,InnerClasses,Signature,Deprecated,SourceFile,LineNumberTable,*Annotation*,EnclosingMethod \
1736		-repackageclasses \
1737		-keepclassmembers "class * { public protected *; }" \
1738		@$(PRIVATE_INTERMEDIATES_DIR)/keep.pro
1739endef
1740
1741###########################################################
1742## Commands for copying files
1743###########################################################
1744
1745# Define a rule to copy a header.  Used via $(eval) by copy_headers.make.
1746# $(1): source header
1747# $(2): destination header
1748define copy-one-header
1749$(2): $(1)
1750	@echo "Header: $$@"
1751	$$(copy-file-to-new-target-with-cp)
1752endef
1753
1754# Define a rule to copy a file.  For use via $(eval).
1755# $(1): source file
1756# $(2): destination file
1757define copy-one-file
1758$(2): $(1) | $(ACP)
1759	@echo "Copy: $$@"
1760	$$(copy-file-to-target)
1761endef
1762
1763# Copies many files.
1764# $(1): The files to copy.  Each entry is a ':' separated src:dst pair
1765# Evaluates to the list of the dst files (ie suitable for a dependency list)
1766define copy-many-files
1767$(foreach f, $(1), $(strip \
1768    $(eval _cmf_tuple := $(subst :, ,$(f))) \
1769    $(eval _cmf_src := $(word 1,$(_cmf_tuple))) \
1770    $(eval _cmf_dest := $(word 2,$(_cmf_tuple))) \
1771    $(eval $(call copy-one-file,$(_cmf_src),$(_cmf_dest))) \
1772    $(_cmf_dest)))
1773endef
1774
1775# Copy the file only if it's a well-formed xml file. For use via $(eval).
1776# $(1): source file
1777# $(2): destination file, must end with .xml.
1778define copy-xml-file-checked
1779$(2): $(1) | $(ACP)
1780	@echo "Copy xml: $$@"
1781	$(hide) xmllint $$< >/dev/null  # Don't print the xml file to stdout.
1782	$$(copy-file-to-target)
1783endef
1784
1785# The -t option to acp and the -p option to cp is
1786# required for OSX.  OSX has a ridiculous restriction
1787# where it's an error for a .a file's modification time
1788# to disagree with an internal timestamp, and this
1789# macro is used to install .a files (among other things).
1790
1791# Copy a single file from one place to another,
1792# preserving permissions and overwriting any existing
1793# file.
1794# We disable the "-t" option for acp cannot handle
1795# high resolution timestamp correctly on file systems like ext4.
1796# Therefore copy-file-to-target is the same as copy-file-to-new-target.
1797define copy-file-to-target
1798@mkdir -p $(dir $@)
1799$(hide) $(ACP) -fp $< $@
1800endef
1801
1802# The same as copy-file-to-target, but use the local
1803# cp command instead of acp.
1804define copy-file-to-target-with-cp
1805@mkdir -p $(dir $@)
1806$(hide) cp -fp $< $@
1807endef
1808
1809# The same as copy-file-to-target, but use the zipalign tool to do so.
1810define copy-file-to-target-with-zipalign
1811@mkdir -p $(dir $@)
1812$(hide) $(ZIPALIGN) -f 4 $< $@
1813endef
1814
1815# The same as copy-file-to-target, but strip out "# comment"-style
1816# comments (for config files and such).
1817define copy-file-to-target-strip-comments
1818@mkdir -p $(dir $@)
1819$(hide) sed -e 's/#.*$$//' -e 's/[ \t]*$$//' -e '/^$$/d' < $< > $@
1820endef
1821
1822# The same as copy-file-to-target, but don't preserve
1823# the old modification time.
1824define copy-file-to-new-target
1825@mkdir -p $(dir $@)
1826$(hide) $(ACP) -fp $< $@
1827endef
1828
1829# The same as copy-file-to-new-target, but use the local
1830# cp command instead of acp.
1831define copy-file-to-new-target-with-cp
1832@mkdir -p $(dir $@)
1833$(hide) cp -f $< $@
1834endef
1835
1836# Copy a prebuilt file to a target location.
1837define transform-prebuilt-to-target
1838@echo "$(if $(PRIVATE_IS_HOST_MODULE),host,target) Prebuilt: $(PRIVATE_MODULE) ($@)"
1839$(copy-file-to-target)
1840endef
1841
1842# Copy a prebuilt file to a target location, using zipalign on it.
1843define transform-prebuilt-to-target-with-zipalign
1844@echo "$(if $(PRIVATE_IS_HOST_MODULE),host,target) Prebuilt APK: $(PRIVATE_MODULE) ($@)"
1845$(copy-file-to-target-with-zipalign)
1846endef
1847
1848# Copy a prebuilt file to a target location, stripping "# comment" comments.
1849define transform-prebuilt-to-target-strip-comments
1850@echo "$(if $(PRIVATE_IS_HOST_MODULE),host,target) Prebuilt: $(PRIVATE_MODULE) ($@)"
1851$(copy-file-to-target-strip-comments)
1852endef
1853
1854###########################################################
1855## On some platforms (MacOS), after copying a static
1856## library, ranlib must be run to update an internal
1857## timestamp!?!?!
1858###########################################################
1859
1860ifeq ($(HOST_RUN_RANLIB_AFTER_COPYING),true)
1861define transform-host-ranlib-copy-hack
1862    $(hide) ranlib $@ || true
1863endef
1864else
1865define transform-host-ranlib-copy-hack
1866@true
1867endef
1868endif
1869
1870ifeq ($(TARGET_RUN_RANLIB_AFTER_COPYING),true)
1871define transform-ranlib-copy-hack
1872    $(hide) ranlib $@
1873endef
1874else
1875define transform-ranlib-copy-hack
1876@true
1877endef
1878endif
1879
1880
1881###########################################################
1882## Commands to call Proguard
1883###########################################################
1884
1885# Command to copy the file with acp, if proguard is disabled.
1886define proguard-disabled-commands
1887@echo Copying: $@
1888$(hide) $(ACP) -fp $< $@
1889endef
1890
1891# Command to call Proguard
1892# $(1): extra flags for instrumentation.
1893define proguard-enabled-commands
1894@echo Proguard: $@
1895$(hide) $(PROGUARD) -injars $< -outjars $@ $(PRIVATE_PROGUARD_FLAGS) $(1)
1896endef
1897
1898# Figure out the proguard dictionary file of the module that is instrumentationed for.
1899define get-instrumentation-proguard-flags
1900$(if $(PRIVATE_INSTRUMENTATION_FOR),$(if $(ALL_MODULES.$(PRIVATE_INSTRUMENTATION_FOR).PROGUARD_ENABLED),-applymapping $(call intermediates-dir-for,APPS,$(PRIVATE_INSTRUMENTATION_FOR),,COMMON)/proguard_dictionary))
1901endef
1902
1903define transform-jar-to-proguard
1904$(eval _instrumentation_proguard_flags:=$(call get-instrumentation-proguard-flags))
1905$(eval _enable_proguard:=$(PRIVATE_PROGUARD_ENABLED)$(_instrumentation_proguard_flags))
1906$(if $(_enable_proguard),$(call proguard-enabled-commands,$(_instrumentation_proguard_flags)),$(call proguard-disabled-commands))
1907$(eval _instrumentation_proguard_flags:=)
1908$(eval _enable_proguard:=)
1909endef
1910
1911
1912###########################################################
1913## Stuff source generated from one-off tools
1914###########################################################
1915
1916define transform-generated-source
1917@echo "target Generated: $(PRIVATE_MODULE) <= $<"
1918@mkdir -p $(dir $@)
1919$(hide) $(PRIVATE_CUSTOM_TOOL)
1920endef
1921
1922
1923###########################################################
1924## Assertions about attributes of the target
1925###########################################################
1926
1927# $(1): The file to check
1928ifndef get-file-size
1929$(error HOST_OS must define get-file-size)
1930endif
1931
1932# Convert a partition data size (eg, as reported in /proc/mtd) to the
1933# size of the image used to flash that partition (which includes a
1934# spare area for each page).
1935# $(1): the partition data size
1936define image-size-from-data-size
1937$(strip $(eval _isfds_value := $$(shell echo $$$$(($(1) / $(BOARD_NAND_PAGE_SIZE) * \
1938  ($(BOARD_NAND_PAGE_SIZE)+$(BOARD_NAND_SPARE_SIZE))))))\
1939$(if $(filter 0, $(_isfds_value)),$(shell echo $$(($(BOARD_NAND_PAGE_SIZE)+$(BOARD_NAND_SPARE_SIZE)))),$(_isfds_value))\
1940$(eval _isfds_value :=))
1941endef
1942
1943# $(1): The file(s) to check (often $@)
1944# $(2): The maximum total image size, in decimal bytes
1945# $(3): the type of filesystem "yaffs" or "raw"
1946#
1947# If $(2) is empty, evaluates to "true"
1948#
1949# Reserve bad blocks.  Make sure that MAX(1% of partition size, 2 blocks)
1950# is left over after the image has been flashed.  Round the 1% up to the
1951# next whole flash block size.
1952define assert-max-file-size
1953$(if $(2), \
1954  size=$$(for i in $(1); do $(call get-file-size,$$i); echo +; done; echo 0); \
1955  total=$$(( $$( echo "$$size" ) )); \
1956  printname=$$(echo -n "$(1)" | tr " " +); \
1957  img_blocksize=$(call image-size-from-data-size,$(BOARD_FLASH_BLOCK_SIZE)); \
1958  if [ "$(3)" == "yaffs" ]; then \
1959    reservedblocks=8; \
1960  else \
1961    reservedblocks=0; \
1962  fi; \
1963  twoblocks=$$((img_blocksize * 2)); \
1964  onepct=$$((((($(2) / 100) - 1) / img_blocksize + 1) * img_blocksize)); \
1965  reserve=$$(((twoblocks > onepct ? twoblocks : onepct) + \
1966               reservedblocks * img_blocksize)); \
1967  maxsize=$$(($(2) - reserve)); \
1968  echo "$$printname maxsize=$$maxsize blocksize=$$img_blocksize total=$$total reserve=$$reserve"; \
1969  if [ "$$total" -gt "$$maxsize" ]; then \
1970    echo "error: $$printname too large ($$total > [$(2) - $$reserve])"; \
1971    false; \
1972  elif [ "$$total" -gt $$((maxsize - 32768)) ]; then \
1973    echo "WARNING: $$printname approaching size limit ($$total now; limit $$maxsize)"; \
1974  fi \
1975 , \
1976  true \
1977 )
1978endef
1979
1980# Like assert-max-file-size, but the second argument is a partition
1981# size, which we'll convert to a max image size before checking it
1982# against the files.
1983#
1984# $(1): The file(s) to check (often $@)
1985# $(2): The partition size.
1986define assert-max-image-size
1987$(if $(2), \
1988  $(call assert-max-file-size,$(1),$(call image-size-from-data-size,$(2))), \
1989  true)
1990endef
1991
1992
1993###########################################################
1994## Define device-specific radio files
1995###########################################################
1996
1997# Copy a radio image file to the output location, and add it to
1998# INSTALLED_RADIOIMAGE_TARGET.
1999# $(1): filename
2000define add-radio-file
2001  $(eval $(call add-radio-file-internal,$(1),$(notdir $(1))))
2002endef
2003define add-radio-file-internal
2004INSTALLED_RADIOIMAGE_TARGET += $$(PRODUCT_OUT)/$(2)
2005$$(PRODUCT_OUT)/$(2) : $$(LOCAL_PATH)/$(1) | $$(ACP)
2006	$$(transform-prebuilt-to-target)
2007endef
2008
2009# Version of add-radio-file that also arranges for the version of the
2010# file to be checked against the contents of
2011# $(TARGET_BOARD_INFO_FILE).
2012# $(1): filename
2013# $(2): name of version variable in board-info (eg, "version-baseband")
2014define add-radio-file-checked
2015  $(eval $(call add-radio-file-checked-internal,$(1),$(notdir $(1)),$(2)))
2016endef
2017define add-radio-file-checked-internal
2018INSTALLED_RADIOIMAGE_TARGET += $$(PRODUCT_OUT)/$(2)
2019BOARD_INFO_CHECK += $(3):$(LOCAL_PATH)/$(1)
2020$$(PRODUCT_OUT)/$(2) : $$(LOCAL_PATH)/$(1) | $$(ACP)
2021	$$(transform-prebuilt-to-target)
2022endef
2023
2024
2025###########################################################
2026# Override the package defined in $(1), setting the
2027# variables listed below differently.
2028#
2029#  $(1): The makefile to override (relative to the source
2030#        tree root)
2031#  $(2): Old LOCAL_PACKAGE_NAME value.
2032#  $(3): New LOCAL_PACKAGE_NAME value.
2033#  $(4): New LOCAL_MANIFEST_PACKAGE_NAME value.
2034#  $(5): New LOCAL_CERTIFICATE value.
2035#  $(6): New LOCAL_INSTRUMENTATION_FOR value.
2036#  $(7): New LOCAL_MANIFEST_INSTRUMENTATION_FOR value.
2037#
2038# Note that LOCAL_PACKAGE_OVERRIDES is NOT cleared in
2039# clear_vars.mk.
2040###########################################################
2041define inherit-package
2042  $(eval $(call inherit-package-internal,$(1),$(2),$(3),$(4),$(5),$(6),$(7)))
2043endef
2044
2045define inherit-package-internal
2046  LOCAL_PACKAGE_OVERRIDES \
2047      := $(strip $(1))||$(strip $(2))||$(strip $(3))||$(strip $(4))||&&$(strip $(5))||&&$(strip $(6))||&&$(strip $(7)) $(LOCAL_PACKAGE_OVERRIDES)
2048  include $(1)
2049  LOCAL_PACKAGE_OVERRIDES \
2050      := $(wordlist 1,$(words $(LOCAL_PACKAGE_OVERRIDES)), $(LOCAL_PACKAGE_OVERRIDES))
2051endef
2052
2053# To be used with inherit-package above
2054# Evalutes to true if the package was overridden
2055define set-inherited-package-variables
2056$(strip $(call set-inherited-package-variables-internal))
2057endef
2058
2059define keep-or-override
2060$(eval $(1) := $(if $(2),$(2),$($(1))))
2061endef
2062
2063define set-inherited-package-variables-internal
2064  $(eval _o := $(subst ||, ,$(lastword $(LOCAL_PACKAGE_OVERRIDES))))
2065  $(eval _n := $(subst ||, ,$(firstword $(LOCAL_PACKAGE_OVERRIDES))))
2066  $(if $(filter $(word 2,$(_n)),$(LOCAL_PACKAGE_NAME)), \
2067    $(eval LOCAL_PACKAGE_NAME := $(word 3,$(_o))) \
2068    $(eval LOCAL_MANIFEST_PACKAGE_NAME := $(word 4,$(_o))) \
2069    $(call keep-or-override,LOCAL_CERTIFICATE,$(patsubst &&%,%,$(word 5,$(_o)))) \
2070    $(call keep-or-override,LOCAL_INSTRUMENTATION_FOR,$(patsubst &&%,%,$(word 6,$(_o)))) \
2071    $(call keep-or-override,LOCAL_MANIFEST_INSTRUMENTATION_FOR,$(patsubst &&%,%,$(word 7,$(_o)))) \
2072    $(eval LOCAL_OVERRIDES_PACKAGES := $(sort $(LOCAL_OVERRIDES_PACKAGES) $(word 2,$(_o)))) \
2073    true \
2074  ,)
2075endef
2076
2077###########################################################
2078## Expand a module name list with REQUIRED modules
2079###########################################################
2080# $(1): The variable name that holds the initial module name list.
2081#       the variable will be modified to hold the expanded results.
2082# $(2): The initial module name list.
2083# Returns empty string (maybe with some whitespaces).
2084define expand-required-modules
2085$(eval _erm_new_modules := $(sort $(filter-out $($(1)),\
2086  $(foreach m,$(2),$(ALL_MODULES.$(m).REQUIRED)))))\
2087$(if $(_erm_new_modules),$(eval $(1) += $(_erm_new_modules))\
2088  $(call expand-required-modules,$(1),$(_erm_new_modules)))
2089endef
2090
2091###########################################################
2092## API Check
2093###########################################################
2094
2095# eval this to define a rule that runs apicheck.
2096#
2097# Args:
2098#    $(1)  target
2099#    $(2)  stable api file
2100#    $(3)  api file to be tested
2101#    $(4)  arguments for apicheck
2102#    $(5)  command to run if apicheck failed
2103#    $(6)  target dependent on this api check
2104#    $(7)  additional dependencies
2105define check-api
2106$(TARGET_OUT_COMMON_INTERMEDIATES)/PACKAGING/$(strip $(1))-timestamp: $(2) $(3) $(APICHECK) $(7)
2107	@echo "Checking API:" $(1)
2108	$(hide) ( $(APICHECK_COMMAND) $(4) $(2) $(3) || ( $(5) ; exit 38 ) )
2109	$(hide) mkdir -p $$(dir $$@)
2110	$(hide) touch $$@
2111$(6): $(TARGET_OUT_COMMON_INTERMEDIATES)/PACKAGING/$(strip $(1))-timestamp
2112endef
2113
2114## Whether to build from source if prebuilt alternative exists
2115###########################################################
2116# $(1): module name
2117# $(2): LOCAL_PATH
2118# Expands to empty string if not from source.
2119ifeq (true,$(ANDROID_BUILD_FROM_SOURCE))
2120define if-build-from-source
2121true
2122endef
2123else
2124define if-build-from-source
2125$(if $(filter $(ANDROID_NO_PREBUILT_MODULES),$(1))$(filter \
2126    $(addsuffix %,$(ANDROID_NO_PREBUILT_PATHS)),$(2)),true)
2127endef
2128endif
2129
2130# Include makefile $(1) if build from source for module $(2)
2131# $(1): the makefile to include
2132# $(2): module name
2133# $(3): LOCAL_PATH
2134define include-if-build-from-source
2135$(if $(call if-build-from-source,$(2),$(3)),$(eval include $(1)))
2136endef
2137
2138###########################################################
2139## Other includes
2140###########################################################
2141
2142# -----------------------------------------------------------------
2143# Rules and functions to help copy important files to DIST_DIR
2144# when requested.
2145include $(BUILD_SYSTEM)/distdir.mk
2146
2147# broken:
2148#	$(foreach file,$^,$(if $(findstring,.a,$(suffix $file)),-l$(file),$(file)))
2149
2150###########################################################
2151## Misc notes
2152###########################################################
2153
2154#DEPDIR = .deps
2155#df = $(DEPDIR)/$(*F)
2156
2157#SRCS = foo.c bar.c ...
2158
2159#%.o : %.c
2160#	@$(MAKEDEPEND); \
2161#	  cp $(df).d $(df).P; \
2162#	  sed -e 's/#.*//' -e 's/^[^:]*: *//' -e 's/ *\\$$//' \
2163#	      -e '/^$$/ d' -e 's/$$/ :/' < $(df).d >> $(df).P; \
2164#	  rm -f $(df).d
2165#	$(COMPILE.c) -o $@ $<
2166
2167#-include $(SRCS:%.c=$(DEPDIR)/%.P)
2168
2169
2170#%.o : %.c
2171#	$(COMPILE.c) -MD -o $@ $<
2172#	@cp $*.d $*.P; \
2173#	  sed -e 's/#.*//' -e 's/^[^:]*: *//' -e 's/ *\\$$//' \
2174#	      -e '/^$$/ d' -e 's/$$/ :/' < $*.d >> $*.P; \
2175#	  rm -f $*.d
2176