blob: 72e0cb103757ebaddd1ffac192b733097bb20888 [file] [log] [blame]
The Android Open Source Project88b60792009-03-03 19:28:42 -08001#
2# Copyright (C) 2008 The Android Open Source Project
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15#
16
17##
18## Common build system definitions. Mostly standard
19## commands for building various types of targets, which
20## are used by others to construct the final targets.
21##
22
23# These are variables we use to collect overall lists
24# of things being processed.
25
26# Full paths to all of the documentation
27ALL_DOCS:=
28
29# The short names of all of the targets in the system.
30# For each element of ALL_MODULES, two other variables
31# are defined:
32# $(ALL_MODULES.$(target)).BUILT
33# $(ALL_MODULES.$(target)).INSTALLED
34# The BUILT variable contains LOCAL_BUILT_MODULE for that
35# target, and the INSTALLED variable contains the LOCAL_INSTALLED_MODULE.
36# Some targets may have multiple files listed in the BUILT and INSTALLED
37# sub-variables.
38ALL_MODULES:=
39
40# Full paths to targets that should be added to the "make droid"
41# set of installed targets.
42ALL_DEFAULT_INSTALLED_MODULES:=
43
The Android Open Source Project88b60792009-03-03 19:28:42 -080044# The list of tags that have been defined by
45# LOCAL_MODULE_TAGS. Each word in this variable maps
46# to a corresponding ALL_MODULE_TAGS.<tagname> variable
47# that contains all of the INSTALLED_MODULEs with that tag.
48ALL_MODULE_TAGS:=
49
50# Similar to ALL_MODULE_TAGS, but contains the short names
51# of all targets for a particular tag. The top-level variable
52# won't have the list of tags; ust ALL_MODULE_TAGS to get
53# the list of all known tags. (This means that this variable
54# will always be empty; it's just here as a placeholder for
55# its sub-variables.)
56ALL_MODULE_NAME_TAGS:=
57
58# Full paths to all prebuilt files that will be copied
59# (used to make the dependency on acp)
60ALL_PREBUILT:=
61
62# Full path to all files that are made by some tool
63ALL_GENERATED_SOURCES:=
64
65# Full path to all asm, C, C++, lex and yacc generated C files.
66# These all have an order-only dependency on the copied headers
67ALL_C_CPP_ETC_OBJECTS:=
68
69# The list of dynamic binaries that haven't been stripped/compressed/prelinked.
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###########################################################
Joe Onorato64d85d02009-04-09 19:31:12 -070096## Evaluates to true if the string contains the word true,
97## and empty otherwise
98## $(1): a var to test
99###########################################################
100
101define true-or-empty
102$(filter true, $(1))
103endef
104
105
106###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -0800107## Retrieve the directory of the current makefile
108###########################################################
109
110# Figure out where we are.
111define my-dir
Dave Bortb3926412009-05-19 16:12:22 -0700112$(strip \
113 $(eval md_file_ := $$(lastword $$(MAKEFILE_LIST))) \
114 $(if $(filter $(CLEAR_VARS),$(md_file_)), \
115 $(error LOCAL_PATH must be set before including $$(CLEAR_VARS)) \
116 , \
117 $(patsubst %/,%,$(dir $(md_file_))) \
118 ) \
119 )
The Android Open Source Project88b60792009-03-03 19:28:42 -0800120endef
121
122###########################################################
123## Retrieve a list of all makefiles immediately below some directory
124###########################################################
125
126define all-makefiles-under
127$(wildcard $(1)/*/Android.mk)
128endef
129
130###########################################################
131## Look under a directory for makefiles that don't have parent
132## makefiles.
133###########################################################
134
135# $(1): directory to search under
136# Ignores $(1)/Android.mk
137define first-makefiles-under
Joe Onoratodc1a7282009-08-04 15:58:26 -0400138$(shell build/tools/findleaves.py --prune=out --prune=.repo --prune=.git \
139 --mindepth=2 $(1) Android.mk)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800140endef
141
142###########################################################
143## Retrieve a list of all makefiles immediately below your directory
144###########################################################
145
146define all-subdir-makefiles
147$(call all-makefiles-under,$(call my-dir))
148endef
149
150###########################################################
151## Look in the named list of directories for makefiles,
152## relative to the current directory.
153###########################################################
154
155# $(1): List of directories to look for under this directory
156define all-named-subdir-makefiles
157$(wildcard $(addsuffix /Android.mk, $(addprefix $(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 html files from here. Meant to be used like:
227## SRC_FILES := $(call all-subdir-html-files)
228###########################################################
229
230define all-subdir-html-files
231$(patsubst ./%,%,$(shell cd $(LOCAL_PATH) ; find . -name "*.html"))
232endef
233
234###########################################################
235## Find all of the files matching pattern
236## SRC_FILES := $(call find-subdir-files, <pattern>)
237###########################################################
238
239define find-subdir-files
240$(patsubst ./%,%,$(shell cd $(LOCAL_PATH) ; find $(1)))
241endef
242
243###########################################################
244# find the files in the subdirectory $1 of LOCAL_DIR
245# matching pattern $2, filtering out files $3
246# e.g.
247# SRC_FILES += $(call find-subdir-subdir-files, \
248# css, *.cpp, DontWantThis.cpp)
249###########################################################
250
251define find-subdir-subdir-files
252$(filter-out $(patsubst %,$(1)/%,$(3)),$(patsubst ./%,%,$(shell cd \
253 $(LOCAL_PATH) ; find $(1) -maxdepth 1 -name $(2))))
254endef
255
256###########################################################
257## Find all of the files matching pattern
258## SRC_FILES := $(call all-subdir-java-files)
259###########################################################
260
261define find-subdir-assets
262$(if $(1),$(patsubst ./%,%, \
263 $(shell if [ -d $(1) ] ; then cd $(1) ; find ./ -type f -and -not -type l ; fi)), \
264 $(warning Empty argument supplied to find-subdir-assets) \
265)
266endef
267
268###########################################################
269## Find various file types in a list of directories relative to $(LOCAL_PATH)
270###########################################################
271
272define find-other-java-files
273 $(call find-subdir-files,$(1) -name "*.java" -and -not -name ".*")
274endef
275
276define find-other-html-files
277 $(call find-subdir-files,$(1) -name "*.html" -and -not -name ".*")
278endef
279
280###########################################################
281## Scan through each directory of $(1) looking for files
282## that match $(2) using $(wildcard). Useful for seeing if
283## a given directory or one of its parents contains
284## a particular file. Returns the first match found,
285## starting furthest from the root.
286###########################################################
287
288define find-parent-file
289$(strip \
290 $(eval _fpf := $(wildcard $(strip $(1))/$(strip $(2)))) \
291 $(if $(_fpf),$(_fpf), \
292 $(if $(filter-out ./ .,$(1)), \
293 $(call find-parent-file,$(patsubst %/,%,$(dir $(1))),$(2)) \
294 ) \
295 ) \
296)
297endef
298
299###########################################################
300## Function we can evaluate to introduce a dynamic dependency
301###########################################################
302
303define add-dependency
304$(1): $(2)
305endef
306
307###########################################################
308## Set up the dependencies for a prebuilt target
309## $(call add-prebuilt-file, srcfile, [targetclass])
310###########################################################
311
312define add-prebuilt-file
313 $(eval $(include-prebuilt))
314endef
315
316define include-prebuilt
317 include $$(CLEAR_VARS)
318 LOCAL_SRC_FILES := $(1)
319 LOCAL_BUILT_MODULE_STEM := $(1)
320 LOCAL_MODULE_SUFFIX := $$(suffix $(1))
321 LOCAL_MODULE := $$(basename $(1))
322 LOCAL_MODULE_CLASS := $(2)
323 include $$(BUILD_PREBUILT)
324endef
325
326###########################################################
327## do multiple prebuilts
328## $(call target class, files ...)
329###########################################################
330
331define add-prebuilt-files
332 $(foreach f,$(2),$(call add-prebuilt-file,$f,$(1)))
333endef
334
335
336
337###########################################################
338## The intermediates directory. Where object files go for
339## a given target. We could technically get away without
340## the "_intermediates" suffix on the directory, but it's
341## nice to be able to grep for that string to find out if
342## anyone's abusing the system.
343###########################################################
344
345# $(1): target class, like "APPS"
346# $(2): target name, like "NotePad"
347# $(3): if non-empty, this is a HOST target.
348# $(4): if non-empty, force the intermediates to be COMMON
349define intermediates-dir-for
350$(strip \
351 $(eval _idfClass := $(strip $(1))) \
352 $(if $(_idfClass),, \
353 $(error $(LOCAL_PATH): Class not defined in call to intermediates-dir-for)) \
354 $(eval _idfName := $(strip $(2))) \
355 $(if $(_idfName),, \
356 $(error $(LOCAL_PATH): Name not defined in call to intermediates-dir-for)) \
357 $(eval _idfPrefix := $(if $(strip $(3)),HOST,TARGET)) \
358 $(if $(filter $(_idfClass),$(COMMON_MODULE_CLASSES))$(4), \
359 $(eval _idfIntBase := $($(_idfPrefix)_OUT_COMMON_INTERMEDIATES)) \
360 , \
361 $(eval _idfIntBase := $($(_idfPrefix)_OUT_INTERMEDIATES)) \
362 ) \
363 $(_idfIntBase)/$(_idfClass)/$(_idfName)_intermediates \
364)
365endef
366
367# Uses LOCAL_MODULE_CLASS, LOCAL_MODULE, and LOCAL_IS_HOST_MODULE
368# to determine the intermediates directory.
369#
370# $(1): if non-empty, force the intermediates to be COMMON
371define local-intermediates-dir
372$(strip \
373 $(if $(strip $(LOCAL_MODULE_CLASS)),, \
374 $(error $(LOCAL_PATH): LOCAL_MODULE_CLASS not defined before call to local-intermediates-dir)) \
375 $(if $(strip $(LOCAL_MODULE)),, \
376 $(error $(LOCAL_PATH): LOCAL_MODULE not defined before call to local-intermediates-dir)) \
377 $(call intermediates-dir-for,$(LOCAL_MODULE_CLASS),$(LOCAL_MODULE),$(LOCAL_IS_HOST_MODULE),$(1)) \
378)
379endef
380
381###########################################################
382## Convert "path/to/libXXX.so" to "-lXXX".
383## Any "path/to/libXXX.a" elements pass through unchanged.
384###########################################################
385
386define normalize-libraries
387$(foreach so,$(filter %.so,$(1)),-l$(patsubst lib%.so,%,$(notdir $(so))))\
388$(filter-out %.so,$(1))
389endef
390
391# TODO: change users to call the common version.
392define normalize-host-libraries
393$(call normalize-libraries,$(1))
394endef
395
396define normalize-target-libraries
397$(call normalize-libraries,$(1))
398endef
399
400###########################################################
401## Convert a list of short module names (e.g., "framework", "Browser")
402## into the list of files that are built for those modules.
403## NOTE: this won't return reliable results until after all
404## sub-makefiles have been included.
405## $(1): target list
406###########################################################
407
408define module-built-files
409$(foreach module,$(1),$(ALL_MODULES.$(module).BUILT))
410endef
411
412###########################################################
413## Convert a list of short modules names (e.g., "framework", "Browser")
414## into the list of files that are installed for those modules.
415## NOTE: this won't return reliable results until after all
416## sub-makefiles have been included.
417## $(1): target list
418###########################################################
419
420define module-installed-files
421$(foreach module,$(1),$(ALL_MODULES.$(module).INSTALLED))
422endef
423
424###########################################################
Joe Onorato64d85d02009-04-09 19:31:12 -0700425## Convert a list of short modules names (e.g., "framework", "Browser")
426## into the list of files that should be used when linking
427## against that module as a public API.
428## TODO: Allow this for more than JAVA_LIBRARIES modules
429## NOTE: this won't return reliable results until after all
430## sub-makefiles have been included.
431## $(1): target list
432###########################################################
433
434define module-stubs-files
435$(foreach module,$(1),$(ALL_MODULES.$(module).STUBS))
436endef
437
438###########################################################
439## Evaluates to the timestamp file for a doc module, which
440## is the dependency that should be used.
441## $(1): doc module
442###########################################################
443
444define doc-timestamp-for
445$(OUT_DOCS)/$(strip $(1))-timestamp
446endef
447
448
449###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -0800450## Convert "framework framework-res ext" to "out/.../javalib.jar ..."
451## This lets us treat framework-res as a normal library.
452## $(1): library list
453## $(2): Non-empty if IS_HOST_MODULE
454###########################################################
455
456# $(1): library name
457# $(2): Non-empty if IS_HOST_MODULE
458define _java-lib-dir
459$(call intermediates-dir-for, \
460 $(if $(filter framework-res,$(1)),APPS,JAVA_LIBRARIES),$(1),$(2))
461endef
462
463# $(1): library name
464define _java-lib-classes.jar
465$(if $(filter framework-res,$(1)),package$(COMMON_ANDROID_PACKAGE_SUFFIX),classes$(COMMON_JAVA_PACKAGE_SUFFIX))
466endef
467
468# $(1): library name
469# $(2): Non-empty if IS_HOST_MODULE
470define _java-lib-full-classes.jar
471$(call _java-lib-dir,$(1),$(2))/$(call _java-lib-classes.jar,$(1))
472endef
473
474# $(1): library name list
475# $(2): Non-empty if IS_HOST_MODULE
476define java-lib-files
477$(foreach lib,$(1),$(call _java-lib-full-classes.jar,$(lib),$(2)))
478endef
479
480# $(1): library name
481define _java-lib-dep
482$(if $(filter framework-res,$(1)),package$(COMMON_ANDROID_PACKAGE_SUFFIX),javalib$(COMMON_JAVA_PACKAGE_SUFFIX))
483endef
484
485# $(1): library name
486# $(2): Non-empty if IS_HOST_MODULE
487define _java-lib-full-dep
488$(call _java-lib-dir,$(1),$(2))/$(call _java-lib-dep,$(1))
489endef
490
491# $(1): library name list
492# $(2): Non-empty if IS_HOST_MODULE
493define java-lib-deps
494$(foreach lib,$(1),$(call _java-lib-full-dep,$(lib),$(2)))
495endef
496
497###########################################################
498## Convert "a b c" into "a:b:c"
499###########################################################
500
501empty :=
502space := $(empty) $(empty)
503
504define normalize-path-list
505$(subst $(space),:,$(strip $(1)))
506endef
507
508###########################################################
Joe Onorato64d85d02009-04-09 19:31:12 -0700509## Read the word out of a colon-separated list of words.
510## This has the same behavior as the built-in function
511## $(word n,str).
512##
513## The individual words may not contain spaces.
514##
515## $(1): 1 based index
516## $(2): value of the form a:b:c...
517###########################################################
518
519define word-colon
520$(word $(1),$(subst :,$(space),$(2)))
521endef
522
523###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -0800524## Convert "a=b c= d e = f" into "a=b c=d e=f"
525##
526## $(1): list to collapse
527## $(2): if set, separator word; usually "=", ":", or ":="
528## Defaults to "=" if not set.
529###########################################################
530
531define collapse-pairs
532$(eval _cpSEP := $(strip $(if $(2),$(2),=)))\
533$(subst $(space)$(_cpSEP)$(space),$(_cpSEP),$(strip \
534 $(subst $(_cpSEP), $(_cpSEP) ,$(1))))
535endef
536
The Android Open Source Project88b60792009-03-03 19:28:42 -0800537###########################################################
538## MODULE_TAG set operations
539###########################################################
540
541# Given a list of tags, return the targets that specify
542# any of those tags.
543# $(1): tag list
544define modules-for-tag-list
545$(sort $(foreach tag,$(1),$(ALL_MODULE_TAGS.$(tag))))
546endef
547
548# Same as modules-for-tag-list, but operates on
549# ALL_MODULE_NAME_TAGS.
550# $(1): tag list
551define module-names-for-tag-list
552$(sort $(foreach tag,$(1),$(ALL_MODULE_NAME_TAGS.$(tag))))
553endef
554
555# Given an accept and reject list, find the matching
556# set of targets. If a target has multiple tags and
557# any of them are rejected, the target is rejected.
558# Reject overrides accept.
559# $(1): list of tags to accept
560# $(2): list of tags to reject
561#TODO(dbort): do $(if $(strip $(1)),$(1),$(ALL_MODULE_TAGS))
562define get-tagged-modules
563$(filter-out \
564 $(call modules-for-tag-list,$(2)), \
565 $(call modules-for-tag-list,$(1)))
566endef
567
Joe Onorato64d85d02009-04-09 19:31:12 -0700568###########################################################
569## Append a leaf to a base path. Properly deals with
570## base paths ending in /.
571##
572## $(1): base path
573## $(2): leaf path
574###########################################################
575
576define append-path
577$(subst //,/,$(1)/$(2))
578endef
579
The Android Open Source Project88b60792009-03-03 19:28:42 -0800580
581###########################################################
582## Package filtering
583###########################################################
584
585# Given a list of installed modules (short or long names)
586# return a list of the packages (yes, .apk packages, not
587# modules in general) that are overridden by this list and,
588# therefore, should not be installed.
589# $(1): mixed list of installed modules
590# TODO: This is fragile; find a reliable way to get this information.
591define _get-package-overrides
592 $(eval ### Discard any words containing slashes, unless they end in .apk, \
593 ### in which case trim off the directory component and the suffix. \
594 ### If there are no slashes, keep the entire word.)
595 $(eval _gpo_names := $(subst /,@@@ @@@,$(1)))
596 $(eval _gpo_names := \
597 $(filter %.apk,$(_gpo_names)) \
598 $(filter-out %@@@ @@@%,$(_gpo_names)))
599 $(eval _gpo_names := $(patsubst %.apk,%,$(_gpo_names)))
600 $(eval _gpo_names := $(patsubst @@@%,%,$(_gpo_names)))
601
602 $(eval ### Remove any remaining words that contain dots.)
603 $(eval _gpo_names := $(subst .,@@@ @@@,$(_gpo_names)))
604 $(eval _gpo_names := $(filter-out %@@@ @@@%,$(_gpo_names)))
605
606 $(eval ### Now we have a list of any words that could possibly refer to \
607 ### packages, although there may be words that do not. Only \
608 ### real packages will be present under PACKAGES.*, though.)
609 $(foreach _gpo_name,$(_gpo_names),$(PACKAGES.$(_gpo_name).OVERRIDES))
610endef
611
612define get-package-overrides
613$(strip $(sort $(call _get-package-overrides,$(1))))
614endef
615
616###########################################################
617## Output the command lines, or not
618###########################################################
619
620ifeq ($(strip $(SHOW_COMMANDS)),)
621define pretty
622@echo $1
623endef
624hide := @
625else
626define pretty
627endef
628hide :=
629endif
630
631###########################################################
632## Dump the variables that are associated with targets
633###########################################################
634
635define dump-module-variables
636@echo all_dependencies=$^
637@echo PRIVATE_YACCFLAGS=$(PRIVATE_YACCFLAGS);
638@echo PRIVATE_CFLAGS=$(PRIVATE_CFLAGS);
639@echo PRIVATE_CPPFLAGS=$(PRIVATE_CPPFLAGS);
640@echo PRIVATE_DEBUG_CFLAGS=$(PRIVATE_DEBUG_CFLAGS);
641@echo PRIVATE_C_INCLUDES=$(PRIVATE_C_INCLUDES);
642@echo PRIVATE_LDFLAGS=$(PRIVATE_LDFLAGS);
643@echo PRIVATE_LDLIBS=$(PRIVATE_LDLIBS);
644@echo PRIVATE_ARFLAGS=$(PRIVATE_ARFLAGS);
645@echo PRIVATE_AAPT_FLAGS=$(PRIVATE_AAPT_FLAGS);
646@echo PRIVATE_DX_FLAGS=$(PRIVATE_DX_FLAGS);
647@echo PRIVATE_JAVA_LIBRARIES=$(PRIVATE_JAVA_LIBRARIES);
648@echo PRIVATE_ALL_SHARED_LIBRARIES=$(PRIVATE_ALL_SHARED_LIBRARIES);
649@echo PRIVATE_ALL_STATIC_LIBRARIES=$(PRIVATE_ALL_STATIC_LIBRARIES);
650@echo PRIVATE_ALL_WHOLE_STATIC_LIBRARIES=$(PRIVATE_ALL_WHOLE_STATIC_LIBRARIES);
651@echo PRIVATE_ALL_OBJECTS=$(PRIVATE_ALL_OBJECTS);
652endef
653
654###########################################################
655## Commands for using sed to replace given variable values
656###########################################################
657
658define transform-variables
659@mkdir -p $(dir $@)
660@echo "Sed: $(if $(PRIVATE_MODULE),$(PRIVATE_MODULE),$@) <= $<"
661$(hide) sed $(foreach var,$(REPLACE_VARS),-e "s/{{$(var)}}/$(subst /,\/,$(PWD)/$($(var)))/g") $< >$@
662$(hide) if [ "$(suffix $@)" = ".sh" ]; then chmod a+rx $@; fi
663endef
664
665
666###########################################################
667## Commands for munging the dependency files GCC generates
668###########################################################
669
670define transform-d-to-p
671@cp $(@:%.o=%.d) $(@:%.o=%.P); \
672 sed -e 's/#.*//' -e 's/^[^:]*: *//' -e 's/ *\\$$//' \
673 -e '/^$$/ d' -e 's/$$/ :/' < $(@:%.o=%.d) >> $(@:%.o=%.P); \
674 rm -f $(@:%.o=%.d)
675endef
676
677###########################################################
678## Commands for running lex
679###########################################################
680
681define transform-l-to-cpp
682@mkdir -p $(dir $@)
683@echo "Lex: $(PRIVATE_MODULE) <= $<"
684$(hide) $(LEX) -o$@ $<
685endef
686
687###########################################################
688## Commands for running yacc
689##
690## Because the extension of c++ files can change, the
691## extension must be specified in $1.
692## E.g, "$(call transform-y-to-cpp,.cpp)"
693###########################################################
694
695define transform-y-to-cpp
696@mkdir -p $(dir $@)
697@echo "Yacc: $(PRIVATE_MODULE) <= $<"
698$(YACC) $(PRIVATE_YACCFLAGS) -o $@ $<
699touch $(@:$1=$(YACC_HEADER_SUFFIX))
700echo '#ifndef '$(@F:$1=_h) > $(@:$1=.h)
701echo '#define '$(@F:$1=_h) >> $(@:$1=.h)
702cat $(@:$1=$(YACC_HEADER_SUFFIX)) >> $(@:$1=.h)
703echo '#endif' >> $(@:$1=.h)
704rm -f $(@:$1=$(YACC_HEADER_SUFFIX))
705endef
706
707
708###########################################################
709## Commands for running aidl
710###########################################################
711
712define transform-aidl-to-java
713@mkdir -p $(dir $@)
714@echo "Aidl: $(PRIVATE_MODULE) <= $<"
715$(hide) $(AIDL) -d$(patsubst %.java,%.P,$@) $(PRIVATE_AIDL_FLAGS) $< $@
716endef
717#$(AIDL) $(PRIVATE_AIDL_FLAGS) $< - | indent -nut -br -npcs -l1000 > $@
718
719
720
721###########################################################
722## Commands for running gcc to compile a C++ file
723###########################################################
724
725define transform-cpp-to-o
726@mkdir -p $(dir $@)
727@echo "target $(PRIVATE_ARM_MODE) C++: $(PRIVATE_MODULE) <= $<"
728$(hide) $(PRIVATE_CXX) \
729 $(foreach incdir, \
730 $(if $(PRIVATE_NO_DEFAULT_COMPILER_FLAGS),, \
731 $(TARGET_PROJECT_INCLUDES) \
732 $(TARGET_C_INCLUDES) \
733 ) \
734 $(PRIVATE_C_INCLUDES) \
735 , \
736 -I $(incdir) \
737 ) \
738 -c \
739 $(if $(PRIVATE_NO_DEFAULT_COMPILER_FLAGS),, \
740 $(TARGET_GLOBAL_CFLAGS) \
741 $(TARGET_GLOBAL_CPPFLAGS) \
742 $(PRIVATE_ARM_CFLAGS) \
743 ) \
744 -fno-rtti \
745 $(PRIVATE_CFLAGS) \
746 $(PRIVATE_CPPFLAGS) \
747 $(PRIVATE_DEBUG_CFLAGS) \
748 -MD -o $@ $<
749$(hide) $(transform-d-to-p)
750endef
751
752
753###########################################################
754## Commands for running gcc to compile a C file
755###########################################################
756
757# $(1): extra flags
758define transform-c-or-s-to-o-no-deps
759@mkdir -p $(dir $@)
760$(hide) $(PRIVATE_CC) \
761 $(foreach incdir, \
762 $(if $(PRIVATE_NO_DEFAULT_COMPILER_FLAGS),, \
763 $(TARGET_PROJECT_INCLUDES) \
764 $(TARGET_C_INCLUDES) \
765 ) \
766 $(PRIVATE_C_INCLUDES) \
767 , \
768 -I $(incdir) \
769 ) \
770 -c \
771 $(if $(PRIVATE_NO_DEFAULT_COMPILER_FLAGS),, \
772 $(TARGET_GLOBAL_CFLAGS) \
773 $(PRIVATE_ARM_CFLAGS) \
774 ) \
775 $(PRIVATE_CFLAGS) \
776 $(1) \
777 $(PRIVATE_DEBUG_CFLAGS) \
778 -MD -o $@ $<
779endef
780
781define transform-c-to-o-no-deps
782@echo "target $(PRIVATE_ARM_MODE) C: $(PRIVATE_MODULE) <= $<"
783$(call transform-c-or-s-to-o-no-deps, )
784endef
785
786define transform-s-to-o-no-deps
787@echo "target asm: $(PRIVATE_MODULE) <= $<"
788$(call transform-c-or-s-to-o-no-deps, $(PRIVATE_ASFLAGS))
789endef
790
791define transform-c-to-o
792$(transform-c-to-o-no-deps)
793$(hide) $(transform-d-to-p)
794endef
795
796define transform-s-to-o
797$(transform-s-to-o-no-deps)
798$(hide) $(transform-d-to-p)
799endef
800
801###########################################################
David 'Digit' Turner5dbb5292009-05-14 16:00:09 +0200802## Commands for running gcc to compile an Objective-C file
803## This should never happen for target builds but this
804## will error at build time.
805###########################################################
806
807define transform-m-to-o-no-deps
808@echo "target ObjC: $(PRIVATE_MODULE) <= $<"
809$(call transform-c-or-s-to-o-no-deps)
810endef
811
812define transform-m-to-o
813$(transform-m-to-o-no-deps)
814$(hide) $(transform-d-to-p)
815endef
816
817###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -0800818## Commands for running gcc to compile a host C++ file
819###########################################################
820
821define transform-host-cpp-to-o
822@mkdir -p $(dir $@)
823@echo "host C++: $(PRIVATE_MODULE) <= $<"
824$(hide) $(PRIVATE_CXX) \
825 $(foreach incdir, \
826 $(if $(PRIVATE_NO_DEFAULT_COMPILER_FLAGS),, \
827 $(HOST_PROJECT_INCLUDES) \
828 $(HOST_C_INCLUDES) \
829 ) \
830 $(PRIVATE_C_INCLUDES) \
831 , \
832 -I $(incdir) \
833 ) \
834 -c \
835 $(if $(PRIVATE_NO_DEFAULT_COMPILER_FLAGS),, \
836 $(HOST_GLOBAL_CFLAGS) \
837 $(HOST_GLOBAL_CPPFLAGS) \
838 ) \
839 $(PRIVATE_CFLAGS) \
840 $(PRIVATE_CPPFLAGS) \
841 $(PRIVATE_DEBUG_CFLAGS) \
842 -MD -o $@ $<
843$(transform-d-to-p)
844endef
845
846
847###########################################################
848## Commands for running gcc to compile a host C file
849###########################################################
850
851# $(1): extra flags
852define transform-host-c-or-s-to-o-no-deps
853@mkdir -p $(dir $@)
854$(hide) $(PRIVATE_CC) \
855 $(foreach incdir, \
856 $(if $(PRIVATE_NO_DEFAULT_COMPILER_FLAGS),, \
857 $(HOST_PROJECT_INCLUDES) \
858 $(HOST_C_INCLUDES) \
859 ) \
860 $(PRIVATE_C_INCLUDES) \
861 , \
862 -I $(incdir) \
863 ) \
864 -c \
865 $(if $(PRIVATE_NO_DEFAULT_COMPILER_FLAGS),, \
866 $(HOST_GLOBAL_CFLAGS) \
867 ) \
868 $(PRIVATE_CFLAGS) \
869 $(1) \
870 $(PRIVATE_DEBUG_CFLAGS) \
871 -MD -o $@ $<
872endef
873
874define transform-host-c-to-o-no-deps
875@echo "host C: $(PRIVATE_MODULE) <= $<"
876$(call transform-host-c-or-s-to-o-no-deps, )
877endef
878
879define transform-host-s-to-o-no-deps
880@echo "host asm: $(PRIVATE_MODULE) <= $<"
881$(call transform-host-c-or-s-to-o-no-deps, $(PRIVATE_ASFLAGS))
882endef
883
884define transform-host-c-to-o
885$(transform-host-c-to-o-no-deps)
886$(transform-d-to-p)
887endef
888
889define transform-host-s-to-o
890$(transform-host-s-to-o-no-deps)
891$(transform-d-to-p)
892endef
893
894###########################################################
David 'Digit' Turner5dbb5292009-05-14 16:00:09 +0200895## Commands for running gcc to compile a host Objective-C file
896###########################################################
897
898define transform-host-m-to-o-no-deps
899@echo "host ObjC: $(PRIVATE_MODULE) <= $<"
900$(call transform-host-c-or-s-to-o-no-deps)
901endef
902
903define tranform-host-m-to-o
904$(transform-host-m-to-o-no-deps)
905$(transform-d-to-p)
906endef
907
908###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -0800909## Commands for running ar
910###########################################################
911
Dan Bornstein3d02eac2009-10-21 11:12:56 -0700912define extract-and-include-target-whole-static-libs
Dima Zavin46e9bec2009-05-27 19:41:07 -0700913$(foreach lib,$(PRIVATE_ALL_WHOLE_STATIC_LIBRARIES), \
914 @echo "preparing StaticLib: $(PRIVATE_MODULE) [including $(lib)]"; \
915 ldir=$(PRIVATE_INTERMEDIATES_DIR)/WHOLE/$(basename $(notdir $(lib)))_objs;\
916 rm -rf $$ldir; \
917 mkdir -p $$ldir; \
918 filelist=; \
919 for f in `$(TARGET_AR) t $(lib)`; do \
920 $(TARGET_AR) p $(lib) $$f > $$ldir/$$f; \
921 filelist="$$filelist $$ldir/$$f"; \
922 done ; \
923 $(TARGET_AR) $(TARGET_GLOBAL_ARFLAGS) $(PRIVATE_ARFLAGS) $@ $$filelist;\
924)
925endef
926
The Android Open Source Project88b60792009-03-03 19:28:42 -0800927# Explicitly delete the archive first so that ar doesn't
928# try to add to an existing archive.
929define transform-o-to-static-lib
930@mkdir -p $(dir $@)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800931@rm -f $@
Dan Bornstein3d02eac2009-10-21 11:12:56 -0700932$(extract-and-include-target-whole-static-libs)
Dima Zavin46e9bec2009-05-27 19:41:07 -0700933@echo "target StaticLib: $(PRIVATE_MODULE) ($@)"
Sriram Raman5bbd2292009-10-07 16:27:38 -0700934$(hide) echo $^ | xargs $(TARGET_AR) $(TARGET_GLOBAL_ARFLAGS) $(PRIVATE_ARFLAGS) $@
The Android Open Source Project88b60792009-03-03 19:28:42 -0800935endef
936
937###########################################################
938## Commands for running host ar
939###########################################################
940
Dan Bornstein3d02eac2009-10-21 11:12:56 -0700941define extract-and-include-host-whole-static-libs
942$(foreach lib,$(PRIVATE_ALL_WHOLE_STATIC_LIBRARIES), \
943 @echo "preparing StaticLib: $(PRIVATE_MODULE) [including $(lib)]"; \
944 ldir=$(PRIVATE_INTERMEDIATES_DIR)/WHOLE/$(basename $(notdir $(lib)))_objs;\
945 rm -rf $$ldir; \
946 mkdir -p $$ldir; \
947 filelist=; \
948 for f in `$(HOST_AR) t $(lib)`; do \
949 $(HOST_AR) p $(lib) $$f > $$ldir/$$f; \
950 filelist="$$filelist $$ldir/$$f"; \
951 done ; \
952 $(HOST_AR) $(HOST_GLOBAL_ARFLAGS) $(PRIVATE_ARFLAGS) $@ $$filelist;\
953)
954endef
955
The Android Open Source Project88b60792009-03-03 19:28:42 -0800956# Explicitly delete the archive first so that ar doesn't
957# try to add to an existing archive.
958define transform-host-o-to-static-lib
959@mkdir -p $(dir $@)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800960@rm -f $@
Dan Bornstein3d02eac2009-10-21 11:12:56 -0700961$(extract-and-include-host-whole-static-libs)
Dan Bornstein6bffc912009-10-15 13:01:36 -0700962@echo "host StaticLib: $(PRIVATE_MODULE) ($@)"
Dan Bornstein3d02eac2009-10-21 11:12:56 -0700963echo $(filter %.o, $^) | \
964 xargs $(HOST_AR) $(HOST_GLOBAL_ARFLAGS) $(PRIVATE_ARFLAGS) $@
The Android Open Source Project88b60792009-03-03 19:28:42 -0800965endef
966
967
968###########################################################
969## Commands for running gcc to link a shared library or package
970###########################################################
971
972# ld just seems to be so finicky with command order that we allow
973# it to be overriden en-masse see combo/linux-arm.make for an example.
974ifneq ($(HOST_CUSTOM_LD_COMMAND),true)
975define transform-host-o-to-shared-lib-inner
976$(HOST_CXX) \
977 -Wl,-rpath-link=$(TARGET_OUT_INTERMEDIATE_LIBRARIES) \
978 -Wl,-rpath,\$$ORIGIN/../lib \
979 -shared -Wl,-soname,$(notdir $@) \
980 $(PRIVATE_LDFLAGS) \
981 $(HOST_GLOBAL_LD_DIRS) \
982 $(if $(PRIVATE_NO_DEFAULT_COMPILER_FLAGS),, \
983 $(HOST_GLOBAL_LDFLAGS) \
984 ) \
985 $(PRIVATE_ALL_OBJECTS) \
986 -Wl,--whole-archive \
987 $(call normalize-host-libraries,$(PRIVATE_ALL_WHOLE_STATIC_LIBRARIES)) \
988 -Wl,--no-whole-archive \
989 $(call normalize-host-libraries,$(PRIVATE_ALL_STATIC_LIBRARIES)) \
990 $(call normalize-host-libraries,$(PRIVATE_ALL_SHARED_LIBRARIES)) \
991 -o $@ \
992 $(PRIVATE_LDLIBS)
993endef
994endif
995
996define transform-host-o-to-shared-lib
997@mkdir -p $(dir $@)
998@echo "host SharedLib: $(PRIVATE_MODULE) ($@)"
999$(hide) $(transform-host-o-to-shared-lib-inner)
1000endef
1001
1002define transform-host-o-to-package
1003@mkdir -p $(dir $@)
1004@echo "host Package: $(PRIVATE_MODULE) ($@)"
1005$(hide) $(transform-host-o-to-shared-lib-inner)
1006endef
1007
1008
1009###########################################################
1010## Commands for running gcc to link a shared library or package
1011###########################################################
1012
1013#echo >$@.vers "{"; \
1014#echo >>$@.vers " global:"; \
1015#$(BUILD_SYSTEM)/filter_symbols.sh $(TARGET_NM) " " ";" $(filter %.o,$^) | sort -u >>$@.vers; \
1016#echo >>$@.vers " local:"; \
1017#echo >>$@.vers " *;"; \
1018#echo >>$@.vers "};"; \
1019
1020# -Wl,--version-script=$@.vers \
1021
1022# ld just seems to be so finicky with command order that we allow
1023# it to be overriden en-masse see combo/linux-arm.make for an example.
1024ifneq ($(TARGET_CUSTOM_LD_COMMAND),true)
1025define transform-o-to-shared-lib-inner
1026$(TARGET_CXX) \
1027 $(TARGET_GLOBAL_LDFLAGS) \
1028 -Wl,-rpath-link=$(TARGET_OUT_INTERMEDIATE_LIBRARIES) \
1029 -Wl,-rpath,\$$ORIGIN/../lib \
1030 -shared -Wl,-soname,$(notdir $@) \
1031 $(PRIVATE_LDFLAGS) \
1032 $(TARGET_GLOBAL_LD_DIRS) \
1033 $(PRIVATE_ALL_OBJECTS) \
1034 -Wl,--whole-archive \
1035 $(call normalize-host-libraries,$(PRIVATE_ALL_WHOLE_STATIC_LIBRARIES)) \
1036 -Wl,--no-whole-archive \
1037 $(call normalize-target-libraries,$(PRIVATE_ALL_STATIC_LIBRARIES)) \
1038 $(call normalize-target-libraries,$(PRIVATE_ALL_SHARED_LIBRARIES)) \
1039 -o $@ \
1040 $(PRIVATE_LDLIBS)
1041endef
1042endif
1043
1044define transform-o-to-shared-lib
1045@mkdir -p $(dir $@)
1046@echo "target SharedLib: $(PRIVATE_MODULE) ($@)"
1047$(hide) $(transform-o-to-shared-lib-inner)
1048endef
1049
1050define transform-o-to-package
1051@mkdir -p $(dir $@)
1052@echo "target Package: $(PRIVATE_MODULE) ($@)"
1053$(hide) $(transform-o-to-shared-lib-inner)
1054endef
1055
1056
1057###########################################################
1058## Commands for filtering a target executable or library
1059###########################################################
1060
1061# Because of bug 743462 ("Prelinked image magic gets stripped
1062# by arm-elf-objcopy"), we have to use soslim to strip target
1063# binaries.
1064define transform-to-stripped
1065@mkdir -p $(dir $@)
1066@echo "target Strip: $(PRIVATE_MODULE) ($@)"
1067$(hide) $(SOSLIM) --strip --shady --quiet $< --outfile $@
1068endef
1069
1070define transform-to-prelinked
1071@mkdir -p $(dir $@)
1072@echo "target Prelink: $(PRIVATE_MODULE) ($@)"
1073$(hide) $(APRIORI) \
1074 --prelinkmap $(TARGET_PRELINKER_MAP) \
1075 --locals-only \
1076 --quiet \
1077 $< \
1078 --output $@
1079endef
1080
1081
1082###########################################################
1083## Commands for running gcc to link an executable
1084###########################################################
1085
1086ifneq ($(TARGET_CUSTOM_LD_COMMAND),true)
1087define transform-o-to-executable-inner
1088$(TARGET_CXX) \
1089 $(TARGET_GLOBAL_LDFLAGS) \
1090 -Wl,-rpath-link=$(TARGET_OUT_INTERMEDIATE_LIBRARIES) \
1091 $(TARGET_GLOBAL_LD_DIRS) \
1092 -Wl,-rpath-link=$(TARGET_OUT_INTERMEDIATE_LIBRARIES) \
1093 -Wl,-rpath,\$$ORIGIN/../lib \
1094 $(PRIVATE_LDFLAGS) \
1095 $(TARGET_GLOBAL_LD_DIRS) \
1096 $(PRIVATE_ALL_OBJECTS) \
1097 -Wl,--whole-archive \
1098 $(call normalize-target-libraries,$(PRIVATE_ALL_WHOLE_STATIC_LIBRARIES)) \
1099 -Wl,--no-whole-archive \
1100 $(call normalize-target-libraries,$(PRIVATE_ALL_STATIC_LIBRARIES)) \
1101 $(call normalize-target-libraries,$(PRIVATE_ALL_SHARED_LIBRARIES)) \
1102 -o $@ \
1103 $(PRIVATE_LDLIBS)
1104endef
1105endif
1106
1107define transform-o-to-executable
1108@mkdir -p $(dir $@)
1109@echo "target Executable: $(PRIVATE_MODULE) ($@)"
1110$(hide) $(transform-o-to-executable-inner)
1111endef
1112
1113
1114###########################################################
1115## Commands for running gcc to link a statically linked
1116## executable. In practice, we only use this on arm, so
1117## the other platforms don't have the
1118## transform-o-to-static-executable defined
1119###########################################################
1120
1121ifneq ($(TARGET_CUSTOM_LD_COMMAND),true)
1122define transform-o-to-static-executable-inner
1123endef
1124endif
1125
1126define transform-o-to-static-executable
1127@mkdir -p $(dir $@)
1128@echo "target StaticExecutable: $(PRIVATE_MODULE) ($@)"
1129$(hide) $(transform-o-to-static-executable-inner)
1130endef
1131
1132
1133###########################################################
1134## Commands for running gcc to link a host executable
1135###########################################################
1136
1137ifneq ($(HOST_CUSTOM_LD_COMMAND),true)
1138define transform-host-o-to-executable-inner
1139$(HOST_CXX) \
1140 -Wl,-rpath-link=$(TARGET_OUT_INTERMEDIATE_LIBRARIES) \
1141 -Wl,-rpath,\$$ORIGIN/../lib \
1142 $(HOST_GLOBAL_LD_DIRS) \
1143 $(PRIVATE_LDFLAGS) \
1144 $(if $(PRIVATE_NO_DEFAULT_COMPILER_FLAGS),, \
1145 $(HOST_GLOBAL_LDFLAGS) \
1146 ) \
1147 $(PRIVATE_ALL_OBJECTS) \
1148 -Wl,--whole-archive \
1149 $(call normalize-host-libraries,$(PRIVATE_ALL_WHOLE_STATIC_LIBRARIES)) \
1150 -Wl,--no-whole-archive \
1151 $(call normalize-host-libraries,$(PRIVATE_ALL_STATIC_LIBRARIES)) \
1152 $(call normalize-host-libraries,$(PRIVATE_ALL_SHARED_LIBRARIES)) \
1153 -o $@ \
1154 $(PRIVATE_LDLIBS)
1155endef
1156endif
1157
1158define transform-host-o-to-executable
1159@mkdir -p $(dir $@)
1160@echo "host Executable: $(PRIVATE_MODULE) ($@)"
1161$(hide) $(transform-host-o-to-executable-inner)
1162endef
1163
1164
1165###########################################################
1166## Commands for running javac to make .class files
1167###########################################################
1168
1169#@echo "Source intermediates dir: $(PRIVATE_SOURCE_INTERMEDIATES_DIR)"
1170#@echo "Source intermediates: $$(find $(PRIVATE_SOURCE_INTERMEDIATES_DIR) -name '*.java')"
1171
1172# TODO: Right now we generate the asset resources twice, first as part
1173# of generating the Java classes, then at the end when packaging the final
1174# assets. This should be changed to do one of two things: (1) Don't generate
1175# any resource files the first time, only create classes during that stage;
1176# or (2) Don't use the -c flag with the second stage, instead taking the
1177# resource files from the first stage as additional input. My original intent
1178# was to use approach (2), but this requires a little more work in the tool.
1179# Maybe we should just use approach (1).
1180
1181# This rule creates the R.java and Manifest.java files, both of which
1182# are PRODUCT-neutral. Don't pass PRODUCT_AAPT_CONFIG to this invocation.
1183define create-resource-java-files
1184@mkdir -p $(PRIVATE_SOURCE_INTERMEDIATES_DIR)
1185@mkdir -p $(dir $(PRIVATE_RESOURCE_PUBLICS_OUTPUT))
1186$(hide) $(AAPT) package $(PRIVATE_AAPT_FLAGS) -m -z \
1187 $(eval # PRODUCT_AAPT_CONFIG is intentionally missing-- see comment.) \
1188 $(addprefix -J , $(PRIVATE_SOURCE_INTERMEDIATES_DIR)) \
1189 $(addprefix -M , $(PRIVATE_ANDROID_MANIFEST)) \
1190 $(addprefix -P , $(PRIVATE_RESOURCE_PUBLICS_OUTPUT)) \
1191 $(addprefix -S , $(PRIVATE_RESOURCE_DIR)) \
1192 $(addprefix -A , $(PRIVATE_ASSET_DIR)) \
Dianne Hackborn9bd54042009-05-15 18:01:20 -07001193 $(addprefix -I , $(PRIVATE_AAPT_INCLUDES)) \
Joe Onorato2daa2b32009-08-30 13:39:24 -07001194 $(addprefix -G , $(PRIVATE_PROGUARD_OPTIONS_FILE)) \
Dianne Hackborn9bd54042009-05-15 18:01:20 -07001195 $(addprefix --min-sdk-version , $(DEFAULT_APP_TARGET_SDK)) \
1196 $(addprefix --target-sdk-version , $(DEFAULT_APP_TARGET_SDK)) \
1197 $(addprefix --version-code , $(PLATFORM_SDK_VERSION)) \
1198 $(addprefix --version-name , $(PLATFORM_VERSION))
The Android Open Source Project88b60792009-03-03 19:28:42 -08001199endef
1200
1201ifeq ($(HOST_OS),windows)
1202xlint_unchecked :=
1203else
1204#xlint_unchecked := -Xlint:unchecked
1205endif
1206
1207# emit-line, <word list>, <output file>
1208define emit-line
1209 $(if $(1),echo -n '$(strip $(1)) ' >> $(2))
1210endef
1211
1212# dump-words-to-file, <word list>, <output file>
1213define dump-words-to-file
1214 @rm -f $(2)
1215 @$(call emit-line,$(wordlist 1,200,$(1)),$(2))
1216 @$(call emit-line,$(wordlist 201,400,$(1)),$(2))
1217 @$(call emit-line,$(wordlist 401,600,$(1)),$(2))
1218 @$(call emit-line,$(wordlist 601,800,$(1)),$(2))
1219 @$(call emit-line,$(wordlist 801,1000,$(1)),$(2))
1220 @$(call emit-line,$(wordlist 1001,1200,$(1)),$(2))
1221 @$(call emit-line,$(wordlist 1201,1400,$(1)),$(2))
1222 @$(call emit-line,$(wordlist 1401,1600,$(1)),$(2))
1223 @$(call emit-line,$(wordlist 1601,1800,$(1)),$(2))
1224 @$(call emit-line,$(wordlist 1801,2000,$(1)),$(2))
1225 @$(call emit-line,$(wordlist 2001,2200,$(1)),$(2))
1226 @$(call emit-line,$(wordlist 2201,2400,$(1)),$(2))
1227 @$(call emit-line,$(wordlist 2401,2600,$(1)),$(2))
1228 @$(call emit-line,$(wordlist 2601,2800,$(1)),$(2))
1229 @$(call emit-line,$(wordlist 2801,3000,$(1)),$(2))
1230 @$(call emit-line,$(wordlist 3001,3200,$(1)),$(2))
1231 @$(call emit-line,$(wordlist 3201,3400,$(1)),$(2))
1232 @$(call emit-line,$(wordlist 3401,3600,$(1)),$(2))
1233 @$(call emit-line,$(wordlist 3601,3800,$(1)),$(2))
1234 @$(call emit-line,$(wordlist 3801,4000,$(1)),$(2))
1235 @$(if $(wordlist 4001,4002,$(1)),$(error Too many words ($(words $(1)))))
1236endef
1237
1238# For a list of jar files, unzip them to a specified directory,
1239# but make sure that no META-INF files come along for the ride.
1240#
1241# $(1): files to unzip
1242# $(2): destination directory
1243define unzip-jar-files
1244 $(hide) for f in $(1); \
1245 do \
1246 if [ ! -f $$f ]; then \
1247 echo Missing file $$f; \
1248 exit 1; \
1249 fi; \
Sriram Ramanf1a55f82009-06-09 15:08:29 -07001250 unzip -qo $$f -d $(2); \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001251 (cd $(2) && rm -rf META-INF); \
1252 done
1253endef
1254
Joe Onorato64d85d02009-04-09 19:31:12 -07001255# below we write the list of java files to java-source-list to avoid argument
1256# list length problems with Cygwin we filter out duplicate java file names
1257# because eclipse's compiler doesn't like them.
The Android Open Source Project88b60792009-03-03 19:28:42 -08001258define transform-java-to-classes.jar
1259@echo "target Java: $(PRIVATE_MODULE) ($(PRIVATE_CLASS_INTERMEDIATES_DIR))"
Joe Onorato64d85d02009-04-09 19:31:12 -07001260$(hide) rm -f $@
1261$(hide) rm -rf $(PRIVATE_CLASS_INTERMEDIATES_DIR)
1262$(hide) mkdir -p $(PRIVATE_CLASS_INTERMEDIATES_DIR)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001263$(call unzip-jar-files,$(PRIVATE_STATIC_JAVA_LIBRARIES), \
1264 $(PRIVATE_CLASS_INTERMEDIATES_DIR))
Joe Onoratoe334d252009-07-17 15:33:40 -04001265$(call dump-words-to-file,$(PRIVATE_JAVA_SOURCES),$(dir $(PRIVATE_CLASS_INTERMEDIATES_DIR))/java-source-list)
Joe Onorato64d85d02009-04-09 19:31:12 -07001266$(hide) if [ -d "$(PRIVATE_SOURCE_INTERMEDIATES_DIR)" ]; then \
Joe Onoratoe334d252009-07-17 15:33:40 -04001267 find $(PRIVATE_SOURCE_INTERMEDIATES_DIR) -name '*.java' >> $(dir $(PRIVATE_CLASS_INTERMEDIATES_DIR))/java-source-list; \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001268fi
Joe Onoratoe334d252009-07-17 15:33:40 -04001269$(hide) tr ' ' '\n' < $(dir $(PRIVATE_CLASS_INTERMEDIATES_DIR))/java-source-list \
1270 | sort -u > $(dir $(PRIVATE_CLASS_INTERMEDIATES_DIR))/java-source-list-uniq
The Android Open Source Project88b60792009-03-03 19:28:42 -08001271$(hide) $(TARGET_JAVAC) -encoding ascii $(PRIVATE_BOOTCLASSPATH) \
1272 $(addprefix -classpath ,$(strip \
1273 $(call normalize-path-list,$(PRIVATE_ALL_JAVA_LIBRARIES)))) \
1274 $(strip $(PRIVATE_JAVAC_DEBUG_FLAGS)) $(xlint_unchecked) \
1275 -extdirs "" -d $(PRIVATE_CLASS_INTERMEDIATES_DIR) \
Joe Onoratoe334d252009-07-17 15:33:40 -04001276 \@$(dir $(PRIVATE_CLASS_INTERMEDIATES_DIR))/java-source-list-uniq \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001277 || ( rm -rf $(PRIVATE_CLASS_INTERMEDIATES_DIR) ; exit 41 )
Joe Onoratoe334d252009-07-17 15:33:40 -04001278$(hide) rm -f $(dir $(PRIVATE_CLASS_INTERMEDIATES_DIR))/java-source-list
1279$(hide) rm -f $(dir $(PRIVATE_CLASS_INTERMEDIATES_DIR))/java-source-list-uniq
Joe Onorato64d85d02009-04-09 19:31:12 -07001280$(hide) mkdir -p $(dir $@)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001281$(hide) jar $(if $(strip $(PRIVATE_JAR_MANIFEST)),-cfm,-cf) \
1282 $@ $(PRIVATE_JAR_MANIFEST) -C $(PRIVATE_CLASS_INTERMEDIATES_DIR) .
Joe Onorato64d85d02009-04-09 19:31:12 -07001283$(hide) rm -rf $(PRIVATE_CLASS_INTERMEDIATES_DIR)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001284endef
1285
1286define transform-classes.jar-to-emma
1287$(hide) java -classpath $(EMMA_JAR) emma instr -outmode fullcopy -outfile \
1288 $(PRIVATE_EMMA_COVERAGE_FILE) -ip $< -d $(PRIVATE_EMMA_INTERMEDIATES_DIR)
1289endef
1290
1291#TODO: use a smaller -Xmx value for most libraries;
1292# only core.jar and framework.jar need a heap this big.
Raphaelf6ff4c52009-08-18 14:43:32 -07001293# Avoid the memory arguments on Windows, dx fails to load for some reason with them.
The Android Open Source Project88b60792009-03-03 19:28:42 -08001294define transform-classes.jar-to-dex
1295@echo "target Dex: $(PRIVATE_MODULE)"
1296@mkdir -p $(dir $@)
Raphaelf6ff4c52009-08-18 14:43:32 -07001297$(hide) $(DX) \
1298 $(if $(findstring windows,$(HOST_OS)),,-JXms16M -JXmx1536M) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001299 --dex --output=$@ \
1300 $(if $(NO_OPTIMIZE_DX), \
1301 --no-optimize) \
1302 $(if $(GENERATE_DEX_DEBUG), \
1303 --debug --verbose \
1304 --dump-to=$(@:.dex=.lst) \
1305 --dump-width=1000) \
1306 $(PRIVATE_DX_FLAGS) \
1307 $<
1308endef
1309
1310# Create a mostly-empty .jar file that we'll add to later.
1311# The MacOS jar tool doesn't like creating empty jar files,
1312# so we need to give it something.
1313define create-empty-package
1314@mkdir -p $(dir $@)
1315$(hide) touch $(dir $@)/dummy
1316$(hide) (cd $(dir $@) && jar cf $(notdir $@) dummy)
1317$(hide) zip -qd $@ dummy
1318$(hide) rm $(dir $@)/dummy
1319endef
1320
1321#TODO: we kinda want to build different asset packages for
1322# different configurations, then combine them later (or something).
1323# Per-locale, etc.
1324# A list of dynamic and static parameters; build layers for
1325# dynamic params that lay over the static ones.
1326#TODO: update the manifest to point to the package file
Dianne Hackborn9bd54042009-05-15 18:01:20 -07001327#Note that the version numbers are given to aapt as simple default
1328#values; applications can override these by explicitly stating
1329#them in their manifest.
The Android Open Source Project88b60792009-03-03 19:28:42 -08001330define add-assets-to-package
1331$(hide) $(AAPT) package -z -u $(PRIVATE_AAPT_FLAGS) \
1332 $(addprefix -c , $(PRODUCT_AAPT_CONFIG)) \
1333 $(addprefix -M , $(PRIVATE_ANDROID_MANIFEST)) \
1334 $(addprefix -S , $(PRIVATE_RESOURCE_DIR)) \
1335 $(addprefix -A , $(PRIVATE_ASSET_DIR)) \
1336 $(addprefix -I , $(PRIVATE_AAPT_INCLUDES)) \
Dianne Hackborn9bd54042009-05-15 18:01:20 -07001337 $(addprefix --min-sdk-version , $(DEFAULT_APP_TARGET_SDK)) \
1338 $(addprefix --target-sdk-version , $(DEFAULT_APP_TARGET_SDK)) \
1339 $(addprefix --version-code , $(PLATFORM_SDK_VERSION)) \
1340 $(addprefix --version-name , $(PLATFORM_VERSION)) \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001341 -F $@
1342endef
1343
1344#TODO: Allow library directory to be specified based on the target
1345# CPU and ABI instead of being hard coded as armeabi.
1346define add-jni-shared-libs-to-package
1347$(hide) rm -rf $(dir $@)lib
1348$(hide) mkdir -p $(dir $@)lib/armeabi
1349$(hide) cp $(PRIVATE_JNI_SHARED_LIBRARIES) $(dir $@)lib/armeabi
1350$(hide) (cd $(dir $@) && zip -r $(notdir $@) lib)
1351$(hide) rm -rf $(dir $@)lib
1352endef
1353
The Android Open Source Project88b60792009-03-03 19:28:42 -08001354#TODO: update the manifest to point to the dex file
1355define add-dex-to-package
Doug Zongker9e4374b2009-10-09 12:11:30 -07001356$(hide) $(AAPT) add -k $@ $(PRIVATE_DEX_FILE)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001357endef
1358
1359define add-java-resources-to-package
1360$(hide) jar uf $@ $(PRIVATE_EXTRA_JAR_ARGS)
1361endef
1362
1363# Sign a package using the specified key/cert.
1364#
1365define sign-package
1366$(hide) mv $@ $@.unsigned
1367$(hide) java -jar $(SIGNAPK_JAR) \
1368 $(PRIVATE_CERTIFICATE) $(PRIVATE_PRIVATE_KEY) $@.unsigned $@.signed
1369$(hide) mv $@.signed $@
1370endef
1371
1372# Align STORED entries of a package on 4-byte boundaries
1373# to make them easier to mmap.
1374#
1375define align-package
1376$(hide) mv $@ $@.unaligned
1377$(hide) $(ZIPALIGN) -f 4 $@.unaligned $@.aligned
1378$(hide) mv $@.aligned $@
1379endef
1380
1381define install-dex-debug
1382$(hide) if [ -f "$(PRIVATE_INTERMEDIATES_DIR)/classes.dex" ]; then \
1383 mkdir -p $(TOP)/dalvik/DEBUG-FILES; \
1384 $(ACP) $(PRIVATE_INTERMEDIATES_DIR)/classes.dex \
1385 $(TOP)/dalvik/DEBUG-FILES/$(PRIVATE_MODULE).dex; \
1386 fi
1387$(hide) if [ -f "$(PRIVATE_INTERMEDIATES_DIR)/classes.lst" ]; then \
1388 mkdir -p $(TOP)/dalvik/DEBUG-FILES; \
1389 $(ACP) $(PRIVATE_INTERMEDIATES_DIR)/classes.lst \
1390 $(TOP)/dalvik/DEBUG-FILES/$(PRIVATE_MODULE).lst; \
1391 fi
1392endef
1393
1394# TODO(joeo): If we can ever upgrade to post 3.81 make and get the
1395# new prebuilt rules to work, we should change this to copy the
1396# resources to the out directory and then copy the resources.
1397
1398# Note: not using aapt tool for this because we aren't making
1399# an android package for the host.
1400define transform-host-java-to-package
1401@echo "host Java: $(PRIVATE_MODULE) ($(PRIVATE_CLASS_INTERMEDIATES_DIR))"
1402@rm -f $@
1403@rm -rf $(PRIVATE_CLASS_INTERMEDIATES_DIR)
1404@mkdir -p $(dir $@)
1405@mkdir -p $(PRIVATE_CLASS_INTERMEDIATES_DIR)
1406$(call unzip-jar-files,$(PRIVATE_STATIC_JAVA_LIBRARIES), \
1407 $(PRIVATE_CLASS_INTERMEDIATES_DIR))
1408$(call dump-words-to-file,$(sort\
1409 $(PRIVATE_JAVA_SOURCES)),\
Joe Onorato483d9242009-06-18 13:11:58 -07001410 $(PRIVATE_INTERMEDIATES_DIR)/java-source-list-uniq)
The Android Open Source Project88b60792009-03-03 19:28:42 -08001411$(hide) $(HOST_JAVAC) -encoding ascii -g \
1412 $(xlint_unchecked) \
1413 $(addprefix -classpath ,$(strip \
1414 $(call normalize-path-list,$(PRIVATE_ALL_JAVA_LIBRARIES)))) \
1415 -extdirs "" -d $(PRIVATE_CLASS_INTERMEDIATES_DIR)\
Joe Onorato483d9242009-06-18 13:11:58 -07001416 \@$(PRIVATE_INTERMEDIATES_DIR)/java-source-list-uniq || \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001417 ( rm -rf $(PRIVATE_CLASS_INTERMEDIATES_DIR) ; exit 41 )
Joe Onorato483d9242009-06-18 13:11:58 -07001418$(hide) rm -f $(PRIVATE_INTERMEDIATES_DIR)/java-source-list
1419$(hide) rm -f $(PRIVATE_INTERMEDIATES_DIR)/java-source-list-uniq
The Android Open Source Project88b60792009-03-03 19:28:42 -08001420$(hide) jar $(if $(strip $(PRIVATE_JAR_MANIFEST)),-cfm,-cf) \
1421 $@ $(PRIVATE_JAR_MANIFEST) $(PRIVATE_EXTRA_JAR_ARGS) \
1422 -C $(PRIVATE_CLASS_INTERMEDIATES_DIR) .
1423endef
1424
1425###########################################################
1426## Obfuscate a jar file
1427###########################################################
1428
1429# PRIVATE_KEEP_FILE is a file containing a list of classes
1430# PRIVATE_INTERMEDIATES_DIR is a directory we can use for temporary files
1431# The module using this must depend on
1432# $(HOST_OUT_JAVA_LIBRARIES)/proguard-4.0.1.jar
1433define obfuscate-jar
1434@echo "Obfuscate jar: $(notdir $@) ($@)"
1435@mkdir -p $(dir $@)
1436@rm -f $@
1437@mkdir -p $(PRIVATE_INTERMEDIATES_DIR)
1438$(hide) sed -e 's/^/-keep class /' < $(PRIVATE_KEEP_FILE) > \
1439 $(PRIVATE_INTERMEDIATES_DIR)/keep.pro
1440$(hide) java -Xmx512M -jar $(HOST_OUT_JAVA_LIBRARIES)/proguard-4.0.1.jar \
1441 -injars $< \
1442 -outjars $@ \
1443 -target 1.5 \
1444 -dontnote -dontwarn \
1445 -printmapping $(PRIVATE_INTERMEDIATES_DIR)/out.map \
1446 -forceprocessing \
1447 -renamesourcefileattribute SourceFile \
1448 -keepattributes Exceptions,InnerClasses,Signature,Deprecated,SourceFile,LineNumberTable,*Annotation*,EnclosingMethod \
1449 -repackageclasses \
1450 -keepclassmembers "class * { public protected *; }" \
1451 @$(PRIVATE_INTERMEDIATES_DIR)/keep.pro
1452endef
1453
1454###########################################################
1455## Commands for copying files
1456###########################################################
1457
1458# Define a rule to copy a header. Used via $(eval) by copy_headers.make.
1459# $(1): source header
1460# $(2): destination header
1461define copy-one-header
1462$(2): $(1)
1463 @echo "Header: $$@"
1464 $$(copy-file-to-new-target-with-cp)
1465endef
1466
1467# Define a rule to copy a file. For use via $(eval).
1468# $(1): source file
1469# $(2): destination file
1470define copy-one-file
1471$(2): $(1) | $(ACP)
1472 @echo "Copy: $$@"
1473 $$(copy-file-to-target)
1474endef
1475
1476# The -t option to acp and the -p option to cp is
1477# required for OSX. OSX has a ridiculous restriction
1478# where it's an error for a .a file's modification time
1479# to disagree with an internal timestamp, and this
1480# macro is used to install .a files (among other things).
1481
1482# Copy a single file from one place to another,
1483# preserving permissions and overwriting any existing
1484# file.
1485define copy-file-to-target
1486@mkdir -p $(dir $@)
1487$(hide) $(ACP) -fpt $< $@
1488endef
1489
1490# The same as copy-file-to-target, but use the local
1491# cp command instead of acp.
1492define copy-file-to-target-with-cp
1493@mkdir -p $(dir $@)
1494$(hide) cp -fp $< $@
1495endef
1496
Dianne Hackborn9c0c4b72009-08-11 19:16:46 -07001497# The same as copy-file-to-target, but use the zipalign tool to do so.
1498define copy-file-to-target-with-zipalign
1499@mkdir -p $(dir $@)
1500$(hide) $(ZIPALIGN) -f 4 $< $@
1501endef
1502
Doug Zongker1046d202009-08-06 13:02:19 -07001503# The same as copy-file-to-target, but strip out "# comment"-style
1504# comments (for config files and such).
1505define copy-file-to-target-strip-comments
1506@mkdir -p $(dir $@)
1507$(hide) sed -e 's/#.*$$//' -e 's/[ \t]*$$//' -e '/^$$/d' < $< > $@
1508endef
1509
The Android Open Source Project88b60792009-03-03 19:28:42 -08001510# The same as copy-file-to-target, but don't preserve
1511# the old modification time.
1512define copy-file-to-new-target
1513@mkdir -p $(dir $@)
1514$(hide) $(ACP) -fp $< $@
1515endef
1516
1517# The same as copy-file-to-new-target, but use the local
1518# cp command instead of acp.
1519define copy-file-to-new-target-with-cp
1520@mkdir -p $(dir $@)
1521$(hide) cp -f $< $@
1522endef
1523
1524# Copy a prebuilt file to a target location.
1525define transform-prebuilt-to-target
1526@echo "$(if $(PRIVATE_IS_HOST_MODULE),host,target) Prebuilt: $(PRIVATE_MODULE) ($@)"
1527$(copy-file-to-target)
1528endef
1529
Dianne Hackborn9c0c4b72009-08-11 19:16:46 -07001530# Copy a prebuilt file to a target location, using zipalign on it.
1531define transform-prebuilt-to-target-with-zipalign
1532@echo "$(if $(PRIVATE_IS_HOST_MODULE),host,target) Prebuilt APK: $(PRIVATE_MODULE) ($@)"
1533$(copy-file-to-target-with-zipalign)
1534endef
1535
Doug Zongker1046d202009-08-06 13:02:19 -07001536# Copy a prebuilt file to a target location, stripping "# comment" comments.
1537define transform-prebuilt-to-target-strip-comments
1538@echo "$(if $(PRIVATE_IS_HOST_MODULE),host,target) Prebuilt: $(PRIVATE_MODULE) ($@)"
1539$(copy-file-to-target-strip-comments)
1540endef
1541
The Android Open Source Project88b60792009-03-03 19:28:42 -08001542
1543###########################################################
1544## On some platforms (MacOS), after copying a static
1545## library, ranlib must be run to update an internal
1546## timestamp!?!?!
1547###########################################################
1548
1549ifeq ($(HOST_RUN_RANLIB_AFTER_COPYING),true)
1550define transform-host-ranlib-copy-hack
1551 $(hide) ranlib $@ || true
1552endef
1553else
1554define transform-host-ranlib-copy-hack
1555true
1556endef
1557endif
1558
1559ifeq ($(TARGET_RUN_RANLIB_AFTER_COPYING),true)
1560define transform-ranlib-copy-hack
1561 $(hide) ranlib $@
1562endef
1563else
1564define transform-ranlib-copy-hack
1565true
1566endef
1567endif
1568
1569
1570###########################################################
1571## Stuff source generated from one-off tools
1572###########################################################
1573
1574define transform-generated-source
1575@echo "target Generated: $(PRIVATE_MODULE) <= $<"
1576@mkdir -p $(dir $@)
1577$(hide) $(PRIVATE_CUSTOM_TOOL)
1578endef
1579
1580
1581###########################################################
1582## Assertions about attributes of the target
1583###########################################################
1584
1585# $(1): The file to check
1586ifndef get-file-size
1587$(error HOST_OS must define get-file-size)
1588endif
1589
Doug Zongker4647f122009-07-02 09:00:54 -07001590# Convert a partition data size (eg, as reported in /proc/mtd) to the
1591# size of the image used to flash that partition (which includes a
1592# 64-byte spare area for each 2048-byte page).
1593# $(1): the partition data size
1594define image-size-from-data-size
1595$(shell echo $$(($(1) / 2048 * (2048+64))))
1596endef
1597
1598# $(1): The file(s) to check (often $@)
1599# $(2): The maximum total image size, in decimal bytes
Doug Zongker6dd2ae02009-08-25 17:23:57 -07001600# $(3): the type of filesystem "yaffs" or "raw"
The Android Open Source Project88b60792009-03-03 19:28:42 -08001601#
1602# If $(2) is empty, evaluates to "true"
1603#
1604# Reserve bad blocks. Make sure that MAX(1% of partition size, 2 blocks)
1605# is left over after the image has been flashed. Round the 1% up to the
1606# next whole flash block size.
1607define assert-max-file-size
1608$(if $(2), \
Doug Zongker742fa572009-07-08 12:09:04 -07001609 size=$$(for i in $(1); do $(call get-file-size,$$i); echo +; done; echo 0); \
1610 total=$$(( $$( echo "$$size" ) )); \
Doug Zongker4647f122009-07-02 09:00:54 -07001611 printname=$$(echo -n "$(1)" | tr " " +); \
1612 echo "$$printname total size is $$total"; \
1613 img_blocksize=$(call image-size-from-data-size,$(BOARD_FLASH_BLOCK_SIZE)); \
Doug Zongker6dd2ae02009-08-25 17:23:57 -07001614 if [ "$(3)" == "yaffs" ]; then \
Doug Zongker93d9ff42009-09-14 17:46:41 -07001615 reservedblocks=8; \
Doug Zongker6dd2ae02009-08-25 17:23:57 -07001616 else \
Doug Zongker4ac1ba62009-08-25 20:38:50 -07001617 reservedblocks=0; \
Doug Zongker6dd2ae02009-08-25 17:23:57 -07001618 fi; \
Doug Zongker4647f122009-07-02 09:00:54 -07001619 twoblocks=$$((img_blocksize * 2)); \
1620 onepct=$$((((($(2) / 100) - 1) / img_blocksize + 1) * img_blocksize)); \
Doug Zongker6dd2ae02009-08-25 17:23:57 -07001621 reserve=$$(((twoblocks > onepct ? twoblocks : onepct) + \
1622 reservedblocks * img_blocksize)); \
Doug Zongker4647f122009-07-02 09:00:54 -07001623 maxsize=$$(($(2) - reserve)); \
1624 if [ "$$total" -gt "$$maxsize" ]; then \
1625 echo "error: $$printname too large ($$total > [$(2) - $$reserve])"; \
1626 false; \
Doug Zongker742fa572009-07-08 12:09:04 -07001627 elif [ "$$total" -gt $$((maxsize - 32768)) ]; then \
Doug Zongker4647f122009-07-02 09:00:54 -07001628 echo "WARNING: $$printname approaching size limit ($$total now; limit $$maxsize)"; \
The Android Open Source Project88b60792009-03-03 19:28:42 -08001629 fi \
1630 , \
1631 true \
1632 )
1633endef
1634
Doug Zongker8510a1e2009-08-07 16:38:08 -07001635# Like assert-max-file-size, but the second argument is a partition
1636# size, which we'll convert to a max image size before checking it
1637# against the files.
1638#
1639# $(1): The file(s) to check (often $@)
1640# $(2): The partition size.
1641define assert-max-image-size
1642$(if $(2), \
1643 $(call assert-max-file-size,$(1),$(call image-size-from-data-size,$(2))), \
1644 true)
1645endef
1646
Doug Zongkere01100c2009-06-19 17:12:18 -07001647
1648###########################################################
1649## Define device-specific radio files
1650###########################################################
1651
1652# Copy a radio image file to the output location, and add it to
1653# INSTALLED_RADIOIMAGE_TARGET.
1654# $(1): filename
1655define add-radio-file
1656 $(eval $(call add-radio-file-internal,$(1)))
1657endef
1658define add-radio-file-internal
1659INSTALLED_RADIOIMAGE_TARGET += $$(PRODUCT_OUT)/$(1)
1660ALL_PREBUILT += $$(PRODUCT_OUT)/$(1)
1661$$(PRODUCT_OUT)/$(1) : $$(LOCAL_PATH)/$(1) | $$(ACP)
1662 $$(transform-prebuilt-to-target)
1663endef
1664
1665
The Android Open Source Project88b60792009-03-03 19:28:42 -08001666###########################################################
1667## Other includes
1668###########################################################
1669
1670# -----------------------------------------------------------------
1671# Rules and functions to help copy important files to DIST_DIR
1672# when requested.
1673include $(BUILD_SYSTEM)/distdir.mk
1674
1675
1676# broken:
1677# $(foreach file,$^,$(if $(findstring,.a,$(suffix $file)),-l$(file),$(file)))
1678
1679###########################################################
1680## Misc notes
1681###########################################################
1682
1683#DEPDIR = .deps
1684#df = $(DEPDIR)/$(*F)
1685
1686#SRCS = foo.c bar.c ...
1687
1688#%.o : %.c
1689# @$(MAKEDEPEND); \
1690# cp $(df).d $(df).P; \
1691# sed -e 's/#.*//' -e 's/^[^:]*: *//' -e 's/ *\\$$//' \
1692# -e '/^$$/ d' -e 's/$$/ :/' < $(df).d >> $(df).P; \
1693# rm -f $(df).d
1694# $(COMPILE.c) -o $@ $<
1695
1696#-include $(SRCS:%.c=$(DEPDIR)/%.P)
1697
1698
1699#%.o : %.c
1700# $(COMPILE.c) -MD -o $@ $<
1701# @cp $*.d $*.P; \
1702# sed -e 's/#.*//' -e 's/^[^:]*: *//' -e 's/ *\\$$//' \
1703# -e '/^$$/ d' -e 's/$$/ :/' < $*.d >> $*.P; \
1704# rm -f $*.d