envsetup.mk revision 0a1026ce27e1c42054d6362d3401bf4054987678
1# Variables we check:
2#     HOST_BUILD_TYPE = { release debug }
3#     TARGET_BUILD_TYPE = { release debug }
4# and we output a bunch of variables, see the case statement at
5# the bottom for the full list
6#     OUT_DIR is also set to "out" if it's not already set.
7#         this allows you to set it to somewhere else if you like
8#     SCAN_EXCLUDE_DIRS is an optional, whitespace separated list of
9#         directories that will also be excluded from full checkout tree
10#         searches for source or make files, in addition to OUT_DIR.
11#         This can be useful if you set OUT_DIR to be a different directory
12#         than other outputs of your build system.
13
14# Set up version information.
15include $(BUILD_SYSTEM)/version_defaults.mk
16
17# ---------------------------------------------------------------
18# If you update the build system such that the environment setup
19# or buildspec.mk need to be updated, increment this number, and
20# people who haven't re-run those will have to do so before they
21# can build.  Make sure to also update the corresponding value in
22# buildspec.mk.default and envsetup.sh.
23CORRECT_BUILD_ENV_SEQUENCE_NUMBER := 10
24
25# ---------------------------------------------------------------
26# The product defaults to generic on hardware
27# NOTE: This will be overridden in product_config.mk if make
28# was invoked with a PRODUCT-xxx-yyy goal.
29ifeq ($(TARGET_PRODUCT),)
30TARGET_PRODUCT := aosp_arm
31endif
32
33
34# the variant -- the set of files that are included for a build
35ifeq ($(strip $(TARGET_BUILD_VARIANT)),)
36TARGET_BUILD_VARIANT := eng
37endif
38
39# ---------------------------------------------------------------
40# Set up configuration for host machine.  We don't do cross-
41# compiles except for arm/mips, so the HOST is whatever we are
42# running on
43
44UNAME := $(shell uname -sm)
45
46# HOST_OS
47ifneq (,$(findstring Linux,$(UNAME)))
48  HOST_OS := linux
49endif
50ifneq (,$(findstring Darwin,$(UNAME)))
51  HOST_OS := darwin
52endif
53ifneq (,$(findstring Macintosh,$(UNAME)))
54  HOST_OS := darwin
55endif
56ifneq (,$(findstring CYGWIN,$(UNAME)))
57  HOST_OS := windows
58endif
59
60# BUILD_OS is the real host doing the build.
61BUILD_OS := $(HOST_OS)
62
63# Under Linux, if USE_MINGW is set, we change HOST_OS to Windows to build the
64# Windows SDK. Only a subset of tools and SDK will manage to build properly.
65ifeq ($(HOST_OS),linux)
66ifdef USE_MINGW
67  HOST_OS := windows
68endif
69endif
70
71ifeq ($(HOST_OS),)
72$(error Unable to determine HOST_OS from uname -sm: $(UNAME)!)
73endif
74
75# HOST_ARCH
76ifneq (,$(findstring x86_64,$(UNAME)))
77  HOST_ARCH := x86_64
78  HOST_2ND_ARCH := x86
79  HOST_IS_64_BIT := true
80else
81ifneq (,$(findstring x86,$(UNAME)))
82$(error Building on a 32-bit x86 host is not supported: $(UNAME)!)
83endif
84endif
85
86BUILD_ARCH := $(HOST_ARCH)
87BUILD_2ND_ARCH := $(HOST_2ND_ARCH)
88
89ifeq ($(HOST_ARCH),)
90$(error Unable to determine HOST_ARCH from uname -sm: $(UNAME)!)
91endif
92
93# the host build defaults to release, and it must be release or debug
94ifeq ($(HOST_BUILD_TYPE),)
95HOST_BUILD_TYPE := release
96endif
97
98ifneq ($(HOST_BUILD_TYPE),release)
99ifneq ($(HOST_BUILD_TYPE),debug)
100$(error HOST_BUILD_TYPE must be either release or debug, not '$(HOST_BUILD_TYPE)')
101endif
102endif
103
104# We don't want to move all the prebuilt host tools to a $(HOST_OS)-x86_64 dir.
105HOST_PREBUILT_ARCH := x86
106# This is the standard way to name a directory containing prebuilt host
107# objects. E.g., prebuilt/$(HOST_PREBUILT_TAG)/cc
108HOST_PREBUILT_TAG := $(BUILD_OS)-$(HOST_PREBUILT_ARCH)
109
110# TARGET_COPY_OUT_* are all relative to the staging directory, ie PRODUCT_OUT.
111# Define them here so they can be used in product config files.
112TARGET_COPY_OUT_SYSTEM := system
113TARGET_COPY_OUT_DATA := data
114TARGET_COPY_OUT_OEM := oem
115TARGET_COPY_OUT_ODM := odm
116TARGET_COPY_OUT_ROOT := root
117TARGET_COPY_OUT_RECOVERY := recovery
118###########################################
119# Define TARGET_COPY_OUT_VENDOR to a placeholder, for at this point
120# we don't know if the device wants to build a separate vendor.img
121# or just build vendor stuff into system.img.
122# A device can set up TARGET_COPY_OUT_VENDOR to "vendor" in its
123# BoardConfig.mk.
124# We'll substitute with the real value after loading BoardConfig.mk.
125_vendor_path_placeholder := ||VENDOR-PATH-PH||
126TARGET_COPY_OUT_VENDOR := $(_vendor_path_placeholder)
127###########################################
128
129# Read the product specs so we can get TARGET_DEVICE and other
130# variables that we need in order to locate the output files.
131include $(BUILD_SYSTEM)/product_config.mk
132
133build_variant := $(filter-out eng user userdebug,$(TARGET_BUILD_VARIANT))
134ifneq ($(build_variant)-$(words $(TARGET_BUILD_VARIANT)),-1)
135$(warning bad TARGET_BUILD_VARIANT: $(TARGET_BUILD_VARIANT))
136$(error must be empty or one of: eng user userdebug)
137endif
138
139ifdef USE_MINGW
140# We only build sdk host tools in the MinGW windows build.
141# Build it as 32-bit as well.
142HOST_PREFER_32_BIT := true
143endif
144SDK_HOST_ARCH := x86
145
146# Boards may be defined under $(SRC_TARGET_DIR)/board/$(TARGET_DEVICE)
147# or under vendor/*/$(TARGET_DEVICE).  Search in both places, but
148# make sure only one exists.
149# Real boards should always be associated with an OEM vendor.
150board_config_mk := \
151	$(strip $(wildcard \
152		$(SRC_TARGET_DIR)/board/$(TARGET_DEVICE)/BoardConfig.mk \
153		$(shell test -d device && find device -maxdepth 4 -path '*/$(TARGET_DEVICE)/BoardConfig.mk') \
154		$(shell test -d vendor && find vendor -maxdepth 4 -path '*/$(TARGET_DEVICE)/BoardConfig.mk') \
155	))
156ifeq ($(board_config_mk),)
157  $(error No config file found for TARGET_DEVICE $(TARGET_DEVICE))
158endif
159ifneq ($(words $(board_config_mk)),1)
160  $(error Multiple board config files for TARGET_DEVICE $(TARGET_DEVICE): $(board_config_mk))
161endif
162include $(board_config_mk)
163ifeq ($(TARGET_ARCH),)
164  $(error TARGET_ARCH not defined by board config: $(board_config_mk))
165endif
166TARGET_DEVICE_DIR := $(patsubst %/,%,$(dir $(board_config_mk)))
167board_config_mk :=
168
169###########################################
170# Now we can substitute with the real value of TARGET_COPY_OUT_VENDOR
171ifeq ($(TARGET_COPY_OUT_VENDOR),$(_vendor_path_placeholder))
172TARGET_COPY_OUT_VENDOR := system/vendor
173else ifeq ($(filter vendor system/vendor,$(TARGET_COPY_OUT_VENDOR)),)
174$(error TARGET_COPY_OUT_VENDOR must be either 'vendor' or 'system/vendor', seeing '$(TARGET_COPY_OUT_VENDOR)'.)
175endif
176PRODUCT_COPY_FILES := $(subst $(_vendor_path_placeholder),$(TARGET_COPY_OUT_VENDOR),$(PRODUCT_COPY_FILES))
177###########################################
178
179
180# ---------------------------------------------------------------
181# Set up configuration for target machine.
182# The following must be set:
183# 		TARGET_OS = { linux }
184# 		TARGET_ARCH = { arm | x86 | mips }
185
186TARGET_OS := linux
187# TARGET_ARCH should be set by BoardConfig.mk and will be checked later
188ifneq ($(filter %64,$(TARGET_ARCH)),)
189TARGET_IS_64_BIT := true
190endif
191
192# the target build type defaults to release
193ifneq ($(TARGET_BUILD_TYPE),debug)
194TARGET_BUILD_TYPE := release
195endif
196
197# ---------------------------------------------------------------
198# figure out the output directories
199
200ifeq (,$(strip $(OUT_DIR)))
201ifeq (,$(strip $(OUT_DIR_COMMON_BASE)))
202OUT_DIR := $(TOPDIR)out
203else
204OUT_DIR := $(OUT_DIR_COMMON_BASE)/$(notdir $(PWD))
205endif
206endif
207
208DEBUG_OUT_DIR := $(OUT_DIR)/debug
209
210# Move the host or target under the debug/ directory
211# if necessary.
212TARGET_OUT_ROOT_release := $(OUT_DIR)/target
213TARGET_OUT_ROOT_debug := $(DEBUG_OUT_DIR)/target
214TARGET_OUT_ROOT := $(TARGET_OUT_ROOT_$(TARGET_BUILD_TYPE))
215
216HOST_OUT_ROOT_release := $(OUT_DIR)/host
217HOST_OUT_ROOT_debug := $(DEBUG_OUT_DIR)/host
218HOST_OUT_ROOT := $(HOST_OUT_ROOT_$(HOST_BUILD_TYPE))
219
220# We want to avoid two host bin directories in multilib build.
221HOST_OUT_release := $(HOST_OUT_ROOT_release)/$(HOST_OS)-$(HOST_PREBUILT_ARCH)
222HOST_OUT_debug := $(HOST_OUT_ROOT_debug)/$(HOST_OS)-$(HOST_PREBUILT_ARCH)
223HOST_OUT := $(HOST_OUT_$(HOST_BUILD_TYPE))
224
225BUILD_OUT := $(OUT_DIR)/host/$(BUILD_OS)-$(HOST_PREBUILT_ARCH)
226
227TARGET_PRODUCT_OUT_ROOT := $(TARGET_OUT_ROOT)/product
228
229TARGET_COMMON_OUT_ROOT := $(TARGET_OUT_ROOT)/common
230HOST_COMMON_OUT_ROOT := $(HOST_OUT_ROOT)/common
231
232PRODUCT_OUT := $(TARGET_PRODUCT_OUT_ROOT)/$(TARGET_DEVICE)
233
234OUT_DOCS := $(TARGET_COMMON_OUT_ROOT)/docs
235
236BUILD_OUT_EXECUTABLES := $(BUILD_OUT)/bin
237
238HOST_OUT_EXECUTABLES := $(HOST_OUT)/bin
239HOST_OUT_SHARED_LIBRARIES := $(HOST_OUT)/lib64
240HOST_OUT_JAVA_LIBRARIES := $(HOST_OUT)/framework
241HOST_OUT_SDK_ADDON := $(HOST_OUT)/sdk_addon
242
243HOST_OUT_INTERMEDIATES := $(HOST_OUT)/obj
244HOST_OUT_HEADERS := $(HOST_OUT_INTERMEDIATES)/include
245HOST_OUT_INTERMEDIATE_LIBRARIES := $(HOST_OUT_INTERMEDIATES)/lib
246HOST_OUT_NOTICE_FILES := $(HOST_OUT_INTERMEDIATES)/NOTICE_FILES
247HOST_OUT_COMMON_INTERMEDIATES := $(HOST_COMMON_OUT_ROOT)/obj
248HOST_OUT_FAKE := $(HOST_OUT)/fake_packages
249
250HOST_OUT_GEN := $(HOST_OUT)/gen
251HOST_OUT_COMMON_GEN := $(HOST_COMMON_OUT_ROOT)/gen
252
253# Out for HOST_2ND_ARCH
254HOST_2ND_ARCH_VAR_PREFIX := 2ND_
255HOST_2ND_ARCH_MODULE_SUFFIX := _32
256$(HOST_2ND_ARCH_VAR_PREFIX)HOST_OUT_INTERMEDIATES := $(HOST_OUT)/obj32
257$(HOST_2ND_ARCH_VAR_PREFIX)HOST_OUT_INTERMEDIATE_LIBRARIES := $($(HOST_2ND_ARCH_VAR_PREFIX)HOST_OUT_INTERMEDIATES)/lib
258$(HOST_2ND_ARCH_VAR_PREFIX)HOST_OUT_SHARED_LIBRARIES := $(HOST_OUT)/lib
259$(HOST_2ND_ARCH_VAR_PREFIX)HOST_OUT_EXECUTABLES := $(HOST_OUT_EXECUTABLES)
260$(HOST_2ND_ARCH_VAR_PREFIX)HOST_OUT_JAVA_LIBRARIES := $(HOST_OUT_JAVA_LIBRARIES)
261
262# The default host library path.
263# It always points to the path where we build libraries in the default bitness.
264ifeq ($(HOST_PREFER_32_BIT),true)
265HOST_LIBRARY_PATH := $($(HOST_2ND_ARCH_VAR_PREFIX)HOST_OUT_SHARED_LIBRARIES)
266else
267HOST_LIBRARY_PATH := $(HOST_OUT_SHARED_LIBRARIES)
268endif
269
270TARGET_OUT_INTERMEDIATES := $(PRODUCT_OUT)/obj
271TARGET_OUT_HEADERS := $(TARGET_OUT_INTERMEDIATES)/include
272TARGET_OUT_INTERMEDIATE_LIBRARIES := $(TARGET_OUT_INTERMEDIATES)/lib
273TARGET_OUT_COMMON_INTERMEDIATES := $(TARGET_COMMON_OUT_ROOT)/obj
274
275TARGET_OUT_GEN := $(PRODUCT_OUT)/gen
276TARGET_OUT_COMMON_GEN := $(TARGET_COMMON_OUT_ROOT)/gen
277
278TARGET_OUT := $(PRODUCT_OUT)/$(TARGET_COPY_OUT_SYSTEM)
279ifeq ($(SANITIZE_TARGET),address)
280target_out_shared_libraries_base := $(PRODUCT_OUT)/$(TARGET_COPY_OUT_DATA)
281else
282target_out_shared_libraries_base := $(TARGET_OUT)
283endif
284
285TARGET_OUT_EXECUTABLES := $(TARGET_OUT)/bin
286TARGET_OUT_OPTIONAL_EXECUTABLES := $(TARGET_OUT)/xbin
287ifeq ($(TARGET_IS_64_BIT),true)
288# /system/lib always contains 32-bit libraries,
289# and /system/lib64 (if present) always contains 64-bit libraries.
290TARGET_OUT_SHARED_LIBRARIES := $(target_out_shared_libraries_base)/lib64
291else
292TARGET_OUT_SHARED_LIBRARIES := $(target_out_shared_libraries_base)/lib
293endif
294TARGET_OUT_JAVA_LIBRARIES := $(TARGET_OUT)/framework
295TARGET_OUT_APPS := $(TARGET_OUT)/app
296TARGET_OUT_APPS_PRIVILEGED := $(TARGET_OUT)/priv-app
297TARGET_OUT_KEYLAYOUT := $(TARGET_OUT)/usr/keylayout
298TARGET_OUT_KEYCHARS := $(TARGET_OUT)/usr/keychars
299TARGET_OUT_ETC := $(TARGET_OUT)/etc
300TARGET_OUT_NOTICE_FILES := $(TARGET_OUT_INTERMEDIATES)/NOTICE_FILES
301TARGET_OUT_FAKE := $(PRODUCT_OUT)/fake_packages
302
303# Out for TARGET_2ND_ARCH
304TARGET_2ND_ARCH_VAR_PREFIX := $(HOST_2ND_ARCH_VAR_PREFIX)
305TARGET_2ND_ARCH_MODULE_SUFFIX := $(HOST_2ND_ARCH_MODULE_SUFFIX)
306$(TARGET_2ND_ARCH_VAR_PREFIX)TARGET_OUT_INTERMEDIATES := $(PRODUCT_OUT)/obj_$(TARGET_2ND_ARCH)
307$(TARGET_2ND_ARCH_VAR_PREFIX)TARGET_OUT_INTERMEDIATE_LIBRARIES := $($(TARGET_2ND_ARCH_VAR_PREFIX)TARGET_OUT_INTERMEDIATES)/lib
308$(TARGET_2ND_ARCH_VAR_PREFIX)TARGET_OUT_SHARED_LIBRARIES := $(target_out_shared_libraries_base)/lib
309$(TARGET_2ND_ARCH_VAR_PREFIX)TARGET_OUT_EXECUTABLES := $(TARGET_OUT_EXECUTABLES)
310$(TARGET_2ND_ARCH_VAR_PREFIX)TARGET_OUT_APPS := $(TARGET_OUT_APPS)
311$(TARGET_2ND_ARCH_VAR_PREFIX)TARGET_OUT_APPS_PRIVILEGED := $(TARGET_OUT_APPS_PRIVILEGED)
312
313TARGET_OUT_DATA := $(PRODUCT_OUT)/$(TARGET_COPY_OUT_DATA)
314TARGET_OUT_DATA_EXECUTABLES := $(TARGET_OUT_EXECUTABLES)
315TARGET_OUT_DATA_SHARED_LIBRARIES := $(TARGET_OUT_SHARED_LIBRARIES)
316TARGET_OUT_DATA_JAVA_LIBRARIES := $(TARGET_OUT_DATA)/framework
317TARGET_OUT_DATA_APPS := $(TARGET_OUT_DATA)/app
318TARGET_OUT_DATA_KEYLAYOUT := $(TARGET_OUT_KEYLAYOUT)
319TARGET_OUT_DATA_KEYCHARS := $(TARGET_OUT_KEYCHARS)
320TARGET_OUT_DATA_ETC := $(TARGET_OUT_ETC)
321ifeq ($(TARGET_IS_64_BIT),true)
322TARGET_OUT_DATA_NATIVE_TESTS := $(TARGET_OUT_DATA)/nativetest64
323else
324TARGET_OUT_DATA_NATIVE_TESTS := $(TARGET_OUT_DATA)/nativetest
325endif
326TARGET_OUT_DATA_FAKE := $(TARGET_OUT_DATA)/fake_packages
327
328$(TARGET_2ND_ARCH_VAR_PREFIX)TARGET_OUT_DATA_EXECUTABLES := $(TARGET_OUT_DATA_EXECUTABLES)
329$(TARGET_2ND_ARCH_VAR_PREFIX)TARGET_OUT_DATA_SHARED_LIBRARIES := $($(TARGET_2ND_ARCH_VAR_PREFIX)TARGET_OUT_SHARED_LIBRARIES)
330$(TARGET_2ND_ARCH_VAR_PREFIX)TARGET_OUT_DATA_APPS := $(TARGET_OUT_DATA_APPS)
331$(TARGET_2ND_ARCH_VAR_PREFIX)TARGET_OUT_DATA_NATIVE_TESTS := $(TARGET_OUT_DATA)/nativetest
332
333TARGET_OUT_CACHE := $(PRODUCT_OUT)/cache
334
335TARGET_OUT_VENDOR := $(PRODUCT_OUT)/$(TARGET_COPY_OUT_VENDOR)
336ifeq ($(SANITIZE_TARGET),address)
337target_out_vendor_shared_libraries_base := $(PRODUCT_OUT)/$(TARGET_COPY_OUT_DATA)/vendor
338else
339target_out_vendor_shared_libraries_base := $(TARGET_OUT_VENDOR)
340endif
341
342TARGET_OUT_VENDOR_EXECUTABLES := $(TARGET_OUT_VENDOR)/bin
343TARGET_OUT_VENDOR_OPTIONAL_EXECUTABLES := $(TARGET_OUT_VENDOR)/xbin
344ifeq ($(TARGET_IS_64_BIT),true)
345TARGET_OUT_VENDOR_SHARED_LIBRARIES := $(target_out_vendor_shared_libraries_base)/lib64
346else
347TARGET_OUT_VENDOR_SHARED_LIBRARIES := $(target_out_vendor_shared_libraries_base)/lib
348endif
349TARGET_OUT_VENDOR_JAVA_LIBRARIES := $(TARGET_OUT_VENDOR)/framework
350TARGET_OUT_VENDOR_APPS := $(TARGET_OUT_VENDOR)/app
351TARGET_OUT_VENDOR_ETC := $(TARGET_OUT_VENDOR)/etc
352
353$(TARGET_2ND_ARCH_VAR_PREFIX)TARGET_OUT_VENDOR_EXECUTABLES := $(TARGET_OUT_VENDOR_EXECUTABLES)
354$(TARGET_2ND_ARCH_VAR_PREFIX)TARGET_OUT_VENDOR_SHARED_LIBRARIES := $(TARGET_OUT_VENDOR)/lib
355$(TARGET_2ND_ARCH_VAR_PREFIX)TARGET_OUT_VENDOR_APPS := $(TARGET_OUT_VENDOR_APPS)
356
357TARGET_OUT_OEM := $(PRODUCT_OUT)/$(TARGET_COPY_OUT_OEM)
358TARGET_OUT_OEM_EXECUTABLES := $(TARGET_OUT_OEM)/bin
359ifeq ($(TARGET_IS_64_BIT),true)
360TARGET_OUT_OEM_SHARED_LIBRARIES := $(TARGET_OUT_OEM)/lib64
361else
362TARGET_OUT_OEM_SHARED_LIBRARIES := $(TARGET_OUT_OEM)/lib
363endif
364# We don't expect Java libraries in the oem.img.
365# TARGET_OUT_OEM_JAVA_LIBRARIES:= $(TARGET_OUT_OEM)/framework
366TARGET_OUT_OEM_APPS := $(TARGET_OUT_OEM)/app
367TARGET_OUT_OEM_ETC := $(TARGET_OUT_OEM)/etc
368
369$(TARGET_2ND_ARCH_VAR_PREFIX)TARGET_OUT_OEM_EXECUTABLES := $(TARGET_OUT_OEM_EXECUTABLES)
370$(TARGET_2ND_ARCH_VAR_PREFIX)TARGET_OUT_OEM_SHARED_LIBRARIES := $(TARGET_OUT_OEM)/lib
371$(TARGET_2ND_ARCH_VAR_PREFIX)TARGET_OUT_OEM_APPS := $(TARGET_OUT_OEM_APPS)
372
373TARGET_OUT_ODM := $(PRODUCT_OUT)/$(TARGET_COPY_OUT_ODM)
374TARGET_OUT_ODM_EXECUTABLES := $(TARGET_OUT_ODM)/bin
375ifeq ($(TARGET_IS_64_BIT),true)
376TARGET_OUT_ODM_SHARED_LIBRARIES := $(TARGET_OUT_ODM)/lib64
377else
378TARGET_OUT_ODM_SHARED_LIBRARIES := $(TARGET_OUT_ODM)/lib
379endif
380TARGET_OUT_ODM_APPS := $(TARGET_OUT_ODM)/app
381TARGET_OUT_ODM_ETC := $(TARGET_OUT_ODM)/etc
382
383$(TARGET_2ND_ARCH_VAR_PREFIX)TARGET_OUT_ODM_EXECUTABLES := $(TARGET_OUT_ODM_EXECUTABLES)
384$(TARGET_2ND_ARCH_VAR_PREFIX)TARGET_OUT_ODM_SHARED_LIBRARIES := $(TARGET_OUT_ODM)/lib
385$(TARGET_2ND_ARCH_VAR_PREFIX)TARGET_OUT_ODM_APPS := $(TARGET_OUT_ODM_APPS)
386
387TARGET_OUT_UNSTRIPPED := $(PRODUCT_OUT)/symbols
388TARGET_OUT_EXECUTABLES_UNSTRIPPED := $(TARGET_OUT_UNSTRIPPED)/system/bin
389TARGET_OUT_SHARED_LIBRARIES_UNSTRIPPED := $(TARGET_OUT_UNSTRIPPED)/system/lib
390TARGET_OUT_VENDOR_SHARED_LIBRARIES_UNSTRIPPED := $(TARGET_OUT_UNSTRIPPED)/$(TARGET_COPY_OUT_VENDOR)/lib
391TARGET_ROOT_OUT_UNSTRIPPED := $(TARGET_OUT_UNSTRIPPED)
392TARGET_ROOT_OUT_SBIN_UNSTRIPPED := $(TARGET_OUT_UNSTRIPPED)/sbin
393TARGET_ROOT_OUT_BIN_UNSTRIPPED := $(TARGET_OUT_UNSTRIPPED)/bin
394
395TARGET_ROOT_OUT := $(PRODUCT_OUT)/$(TARGET_COPY_OUT_ROOT)
396TARGET_ROOT_OUT_BIN := $(TARGET_ROOT_OUT)/bin
397TARGET_ROOT_OUT_SBIN := $(TARGET_ROOT_OUT)/sbin
398TARGET_ROOT_OUT_ETC := $(TARGET_ROOT_OUT)/etc
399TARGET_ROOT_OUT_USR := $(TARGET_ROOT_OUT)/usr
400
401TARGET_RECOVERY_OUT := $(PRODUCT_OUT)/$(TARGET_COPY_OUT_RECOVERY)
402TARGET_RECOVERY_ROOT_OUT := $(TARGET_RECOVERY_OUT)/root
403
404TARGET_SYSLOADER_OUT := $(PRODUCT_OUT)/sysloader
405TARGET_SYSLOADER_ROOT_OUT := $(TARGET_SYSLOADER_OUT)/root
406TARGET_SYSLOADER_SYSTEM_OUT := $(TARGET_SYSLOADER_OUT)/root/system
407
408TARGET_INSTALLER_OUT := $(PRODUCT_OUT)/installer
409TARGET_INSTALLER_DATA_OUT := $(TARGET_INSTALLER_OUT)/data
410TARGET_INSTALLER_ROOT_OUT := $(TARGET_INSTALLER_OUT)/root
411TARGET_INSTALLER_SYSTEM_OUT := $(TARGET_INSTALLER_OUT)/root/system
412
413COMMON_MODULE_CLASSES := TARGET-NOTICE_FILES HOST-NOTICE_FILES HOST-JAVA_LIBRARIES
414
415ifeq (,$(strip $(DIST_DIR)))
416  DIST_DIR := $(OUT_DIR)/dist
417endif
418
419ifeq ($(PRINT_BUILD_CONFIG),)
420PRINT_BUILD_CONFIG := true
421endif
422