The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1 | # This is included by the top-level Makefile. |
| 2 | # It sets up standard variables based on the |
| 3 | # current configuration and platform, which |
| 4 | # are not specific to what is being built. |
| 5 | |
Ying Wang | 6714dbc | 2010-03-30 16:42:15 -0700 | [diff] [blame] | 6 | # Only use ANDROID_BUILD_SHELL to wrap around bash. |
| 7 | # DO NOT use other shells such as zsh. |
Ying Wang | 2ce495a | 2010-03-30 12:55:13 -0700 | [diff] [blame] | 8 | ifdef ANDROID_BUILD_SHELL |
| 9 | SHELL := $(ANDROID_BUILD_SHELL) |
| 10 | else |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 11 | # Use bash, not whatever shell somebody has installed as /bin/sh |
| 12 | # This is repeated from main.mk, since envsetup.sh runs this file |
| 13 | # directly. |
| 14 | SHELL := /bin/bash |
Ying Wang | 2ce495a | 2010-03-30 12:55:13 -0700 | [diff] [blame] | 15 | endif |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 16 | |
Ying Wang | 157a5e1 | 2012-09-27 13:26:25 -0700 | [diff] [blame] | 17 | # Utility variables. |
| 18 | empty := |
| 19 | space := $(empty) $(empty) |
| 20 | comma := , |
Ying Wang | 58a5db3 | 2014-10-03 11:36:27 -0700 | [diff] [blame] | 21 | # Note that make will eat the newline just before endef. |
| 22 | define newline |
| 23 | |
| 24 | |
| 25 | endef |
| 26 | # Unfortunately you can't simply define backslash as \ or \\. |
| 27 | backslash := \a |
| 28 | backslash := $(patsubst %a,%,$(backslash)) |
Ying Wang | 157a5e1 | 2012-09-27 13:26:25 -0700 | [diff] [blame] | 29 | |
Joe Onorato | bc8abb6 | 2010-01-04 12:57:38 -0800 | [diff] [blame] | 30 | # Tell python not to spam the source tree with .pyc files. This |
| 31 | # only has an effect on python 2.6 and above. |
| 32 | export PYTHONDONTWRITEBYTECODE := 1 |
| 33 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 34 | # Standard source directories. |
| 35 | SRC_DOCS:= $(TOPDIR)docs |
| 36 | # TODO: Enforce some kind of layering; only add include paths |
| 37 | # when a module links against a particular library. |
| 38 | # TODO: See if we can remove most of these from the global list. |
| 39 | SRC_HEADERS := \ |
| 40 | $(TOPDIR)system/core/include \ |
| 41 | $(TOPDIR)hardware/libhardware/include \ |
| 42 | $(TOPDIR)hardware/libhardware_legacy/include \ |
| 43 | $(TOPDIR)hardware/ril/include \ |
Elliott Hughes | 89898df | 2012-05-03 16:37:40 -0700 | [diff] [blame] | 44 | $(TOPDIR)libnativehelper/include \ |
Mathias Agopian | bd118e6 | 2012-03-05 16:04:31 -0800 | [diff] [blame] | 45 | $(TOPDIR)frameworks/native/include \ |
| 46 | $(TOPDIR)frameworks/native/opengl/include \ |
James Dong | c49ee71 | 2012-03-23 18:46:42 -0700 | [diff] [blame] | 47 | $(TOPDIR)frameworks/av/include \ |
Derek Sollenberger | aa42672 | 2014-02-27 14:02:37 -0500 | [diff] [blame] | 48 | $(TOPDIR)frameworks/base/include |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 49 | SRC_HOST_HEADERS:=$(TOPDIR)tools/include |
| 50 | SRC_LIBRARIES:= $(TOPDIR)libs |
| 51 | SRC_SERVERS:= $(TOPDIR)servers |
| 52 | SRC_TARGET_DIR := $(TOPDIR)build/target |
Ying Wang | 19cc22b | 2012-12-04 15:07:34 -0800 | [diff] [blame] | 53 | SRC_API_DIR := $(TOPDIR)prebuilts/sdk/api |
Ying Wang | 829f68b | 2014-06-26 17:54:28 -0700 | [diff] [blame] | 54 | SRC_SYSTEM_API_DIR := $(TOPDIR)prebuilts/sdk/system-api |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 55 | |
| 56 | # Some specific paths to tools |
| 57 | SRC_DROIDDOC_DIR := $(TOPDIR)build/tools/droiddoc |
| 58 | |
| 59 | # Various mappings to avoid hard-coding paths all over the place |
| 60 | include $(BUILD_SYSTEM)/pathmap.mk |
| 61 | |
| 62 | # ############################################################### |
| 63 | # Build system internal files |
| 64 | # ############################################################### |
| 65 | |
| 66 | BUILD_COMBOS:= $(BUILD_SYSTEM)/combo |
| 67 | |
| 68 | CLEAR_VARS:= $(BUILD_SYSTEM)/clear_vars.mk |
| 69 | BUILD_HOST_STATIC_LIBRARY:= $(BUILD_SYSTEM)/host_static_library.mk |
| 70 | BUILD_HOST_SHARED_LIBRARY:= $(BUILD_SYSTEM)/host_shared_library.mk |
| 71 | BUILD_STATIC_LIBRARY:= $(BUILD_SYSTEM)/static_library.mk |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 72 | BUILD_SHARED_LIBRARY:= $(BUILD_SYSTEM)/shared_library.mk |
| 73 | BUILD_EXECUTABLE:= $(BUILD_SYSTEM)/executable.mk |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 74 | BUILD_HOST_EXECUTABLE:= $(BUILD_SYSTEM)/host_executable.mk |
| 75 | BUILD_PACKAGE:= $(BUILD_SYSTEM)/package.mk |
Dima Zavin | f625bf2 | 2010-09-16 00:25:16 -0700 | [diff] [blame] | 76 | BUILD_PHONY_PACKAGE:= $(BUILD_SYSTEM)/phony_package.mk |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 77 | BUILD_HOST_PREBUILT:= $(BUILD_SYSTEM)/host_prebuilt.mk |
| 78 | BUILD_PREBUILT:= $(BUILD_SYSTEM)/prebuilt.mk |
| 79 | BUILD_MULTI_PREBUILT:= $(BUILD_SYSTEM)/multi_prebuilt.mk |
| 80 | BUILD_JAVA_LIBRARY:= $(BUILD_SYSTEM)/java_library.mk |
| 81 | BUILD_STATIC_JAVA_LIBRARY:= $(BUILD_SYSTEM)/static_java_library.mk |
| 82 | BUILD_HOST_JAVA_LIBRARY:= $(BUILD_SYSTEM)/host_java_library.mk |
| 83 | BUILD_DROIDDOC:= $(BUILD_SYSTEM)/droiddoc.mk |
| 84 | BUILD_COPY_HEADERS := $(BUILD_SYSTEM)/copy_headers.mk |
Ying Wang | 4c68174 | 2010-07-20 11:08:47 -0700 | [diff] [blame] | 85 | BUILD_NATIVE_TEST := $(BUILD_SYSTEM)/native_test.mk |
Colin Cross | 52a341b | 2013-11-15 14:37:23 -0800 | [diff] [blame] | 86 | BUILD_NATIVE_BENCHMARK := $(BUILD_SYSTEM)/native_benchmark.mk |
Ying Wang | 4c68174 | 2010-07-20 11:08:47 -0700 | [diff] [blame] | 87 | BUILD_HOST_NATIVE_TEST := $(BUILD_SYSTEM)/host_native_test.mk |
Dan Albert | 36b6f04 | 2015-07-30 16:56:30 -0700 | [diff] [blame] | 88 | BUILD_FUZZ_TEST := $(BUILD_SYSTEM)/fuzz_test.mk |
| 89 | BUILD_HOST_FUZZ_TEST := $(BUILD_SYSTEM)/host_fuzz_test.mk |
Christopher Ferris | 70ca5e5 | 2014-02-04 22:09:16 -0800 | [diff] [blame] | 90 | |
| 91 | BUILD_SHARED_TEST_LIBRARY := $(BUILD_SYSTEM)/shared_test_lib.mk |
| 92 | BUILD_HOST_SHARED_TEST_LIBRARY := $(BUILD_SYSTEM)/host_shared_test_lib.mk |
| 93 | BUILD_STATIC_TEST_LIBRARY := $(BUILD_SYSTEM)/static_test_lib.mk |
| 94 | BUILD_HOST_STATIC_TEST_LIBRARY := $(BUILD_SYSTEM)/host_static_test_lib.mk |
| 95 | |
Ying Wang | 13d6950 | 2012-11-01 17:22:33 -0700 | [diff] [blame] | 96 | BUILD_NOTICE_FILE := $(BUILD_SYSTEM)/notice_files.mk |
Narayan Kamath | 0dd273a | 2013-10-28 13:20:52 +0000 | [diff] [blame] | 97 | BUILD_HOST_DALVIK_JAVA_LIBRARY := $(BUILD_SYSTEM)/host_dalvik_java_library.mk |
| 98 | BUILD_HOST_DALVIK_STATIC_JAVA_LIBRARY := $(BUILD_SYSTEM)/host_dalvik_static_java_library.mk |
| 99 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 100 | |
| 101 | # ############################################################### |
| 102 | # Parse out any modifier targets. |
| 103 | # ############################################################### |
| 104 | |
| 105 | # The 'showcommands' goal says to show the full command |
| 106 | # lines being executed, instead of a short message about |
| 107 | # the kind of operation being done. |
| 108 | SHOW_COMMANDS:= $(filter showcommands,$(MAKECMDGOALS)) |
Ying Wang | bb1da5e | 2015-07-28 17:57:45 -0700 | [diff] [blame] | 109 | hide := $(if $(SHOW_COMMANDS),,@) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 110 | |
| 111 | # ############################################################### |
| 112 | # Set common values |
| 113 | # ############################################################### |
| 114 | |
| 115 | # These can be changed to modify both host and device modules. |
Marco Nelissen | e4aaa36 | 2009-07-13 20:42:49 -0700 | [diff] [blame] | 116 | COMMON_GLOBAL_CFLAGS:= -DANDROID -fmessage-length=0 -W -Wall -Wno-unused -Winit-self -Wpointer-arith |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 117 | COMMON_RELEASE_CFLAGS:= -DNDEBUG -UDEBUG |
| 118 | |
Dan Albert | c7d307d | 2015-07-29 15:13:57 -0700 | [diff] [blame] | 119 | COMMON_GLOBAL_CPPFLAGS:= $(COMMON_GLOBAL_CFLAGS) -Wsign-promo |
Marco Nelissen | 73a075d | 2009-07-08 17:51:18 -0700 | [diff] [blame] | 120 | COMMON_RELEASE_CPPFLAGS:= $(COMMON_RELEASE_CFLAGS) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 121 | |
Dan Albert | d160041 | 2015-06-10 16:33:43 -0700 | [diff] [blame] | 122 | GLOBAL_CFLAGS_NO_OVERRIDE := \ |
Dan Albert | 0c91fa8 | 2015-02-21 12:45:26 -0800 | [diff] [blame] | 123 | -Werror=int-to-pointer-cast \ |
| 124 | -Werror=pointer-to-int-cast \ |
| 125 | |
Dan Albert | d160041 | 2015-06-10 16:33:43 -0700 | [diff] [blame] | 126 | GLOBAL_CLANG_CFLAGS_NO_OVERRIDE := \ |
| 127 | -Werror=address-of-temporary \ |
| 128 | -Werror=null-dereference \ |
| 129 | -Werror=return-type \ |
| 130 | |
Dan Albert | 0c91fa8 | 2015-02-21 12:45:26 -0800 | [diff] [blame] | 131 | GLOBAL_CPPFLAGS_NO_OVERRIDE := |
| 132 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 133 | # Set the extensions used for various packages |
| 134 | COMMON_PACKAGE_SUFFIX := .zip |
| 135 | COMMON_JAVA_PACKAGE_SUFFIX := .jar |
| 136 | COMMON_ANDROID_PACKAGE_SUFFIX := .apk |
| 137 | |
| 138 | # list of flags to turn specific warnings in to errors |
Marco Nelissen | bac9a7f | 2009-07-13 17:51:59 -0700 | [diff] [blame] | 139 | TARGET_ERROR_FLAGS := -Werror=return-type -Werror=non-virtual-dtor -Werror=address -Werror=sequence-point |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 140 | |
Yohann Roussel | f09e59e | 2014-09-08 14:45:14 +0200 | [diff] [blame] | 141 | ifdef TMPDIR |
| 142 | JAVA_TMPDIR_ARG := -Djava.io.tmpdir=$(TMPDIR) |
| 143 | else |
| 144 | JAVA_TMPDIR_ARG := |
| 145 | endif |
| 146 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 147 | # ############################################################### |
| 148 | # Include sub-configuration files |
| 149 | # ############################################################### |
| 150 | |
| 151 | # --------------------------------------------------------------- |
| 152 | # Try to include buildspec.mk, which will try to set stuff up. |
Brian Carlstrom | 1aeee8b | 2013-06-27 12:02:46 -0700 | [diff] [blame] | 153 | # If this file doesn't exist, the environment variables will |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 154 | # be used, and if that doesn't work, then the default is an |
| 155 | # arm build |
Ying Wang | d4495e9 | 2011-11-02 13:49:08 -0700 | [diff] [blame] | 156 | ifndef ANDROID_BUILDSPEC |
| 157 | ANDROID_BUILDSPEC := $(TOPDIR)buildspec.mk |
| 158 | endif |
| 159 | -include $(ANDROID_BUILDSPEC) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 160 | |
| 161 | # --------------------------------------------------------------- |
| 162 | # Define most of the global variables. These are the ones that |
| 163 | # are specific to the user's build configuration. |
| 164 | include $(BUILD_SYSTEM)/envsetup.mk |
| 165 | |
Dan Willemsen | ccc933e | 2015-08-11 15:25:12 -0700 | [diff] [blame] | 166 | # --------------------------------------------------------------- |
| 167 | # Allow the C/C++ macros __DATE__ and __TIME__ to be set to the |
| 168 | # build date and time, so that a build may be repeated. |
| 169 | # Write the date and time to a file so that the command line |
| 170 | # doesn't change every time, which would cause ninja to rebuild |
| 171 | # the files. |
| 172 | $(shell mkdir -p $(OUT_DIR) && \ |
| 173 | $(DATE) "+%b %_d %Y" > $(OUT_DIR)/build_c_date.txt && \ |
| 174 | $(DATE) +%T > $(OUT_DIR)/build_c_time.txt) |
| 175 | BUILD_DATETIME_C_DATE := $$(cat $(OUT_DIR)/build_c_date.txt) |
| 176 | BUILD_DATETIME_C_TIME := $$(cat $(OUT_DIR)/build_c_time.txt) |
| 177 | |
| 178 | ifeq ($(OVERRIDE_C_DATE_TIME),true) |
| 179 | COMMON_GLOBAL_CFLAGS += -Wno-builtin-macro-redefined -D__DATE__="\"$(BUILD_DATETIME_C_DATE)\"" -D__TIME__=\"$(BUILD_DATETIME_C_TIME)\" |
| 180 | COMMON_GLOBAL_CPPFLAGS += -Wno-builtin-macro-redefined -D__DATE__="\"$(BUILD_DATETIME_C_DATE)\"" -D__TIME__=\"$(BUILD_DATETIME_C_TIME)\" |
| 181 | endif |
| 182 | |
Dima Zavin | 06e758a | 2012-03-30 10:45:38 -0700 | [diff] [blame] | 183 | # The build system exposes several variables for where to find the kernel |
| 184 | # headers: |
| 185 | # TARGET_DEVICE_KERNEL_HEADERS is automatically created for the current |
| 186 | # device being built. It is set as $(TARGET_DEVICE_DIR)/kernel-headers, |
| 187 | # e.g. device/samsung/tuna/kernel-headers. This directory is not |
| 188 | # explicitly set by anyone, the build system always adds this subdir. |
| 189 | # |
| 190 | # TARGET_BOARD_KERNEL_HEADERS is specified by the BoardConfig.mk file |
| 191 | # to allow other directories to be included. This is useful if there's |
| 192 | # some common place where a few headers are being kept for a group |
| 193 | # of devices. For example, device/<vendor>/common/kernel-headers could |
| 194 | # contain some headers for several of <vendor>'s devices. |
| 195 | # |
| 196 | # TARGET_PRODUCT_KERNEL_HEADERS is generated by the product inheritance |
| 197 | # graph. This allows architecture products to provide headers for the |
| 198 | # devices using that architecture. For example, |
| 199 | # hardware/ti/omap4xxx/omap4.mk will specify |
| 200 | # PRODUCT_VENDOR_KERNEL_HEADERS variable that specify where the omap4 |
| 201 | # specific headers are, e.g. hardware/ti/omap4xxx/kernel-headers. |
| 202 | # The build system then combines all the values specified by all the |
| 203 | # PRODUCT_VENDOR_KERNEL_HEADERS directives in the product inheritance |
| 204 | # tree and then exports a TARGET_PRODUCT_KERNEL_HEADERS variable. |
| 205 | # |
| 206 | # The layout of subdirs in any of the kernel-headers dir should mirror the |
| 207 | # layout of the kernel include/ directory. For example, |
| 208 | # device/samsung/tuna/kernel-headers/linux/, |
| 209 | # hardware/ti/omap4xxx/kernel-headers/media/, |
| 210 | # etc. |
| 211 | # |
| 212 | # NOTE: These directories MUST contain post-processed headers using the |
| 213 | # bionic/libc/kernel/clean_header.py tool. Additionally, the original kernel |
| 214 | # headers must also be checked in, but in a different subdirectory. By |
| 215 | # convention, the originals should be checked into original-kernel-headers |
| 216 | # directory of the same parent dir. For example, |
| 217 | # device/samsung/tuna/kernel-headers <----- post-processed |
| 218 | # device/samsung/tuna/original-kernel-headers <----- originals |
| 219 | # |
Dima Zavin | 4e16f96 | 2012-03-14 23:50:17 -0700 | [diff] [blame] | 220 | TARGET_DEVICE_KERNEL_HEADERS := $(strip $(wildcard $(TARGET_DEVICE_DIR)/kernel-headers)) |
| 221 | |
Dima Zavin | f926990 | 2012-03-16 09:57:11 -0700 | [diff] [blame] | 222 | define validate-kernel-headers |
| 223 | $(if $(firstword $(foreach hdr_dir,$(1),\ |
| 224 | $(filter-out kernel-headers,$(notdir $(hdr_dir))))),\ |
| 225 | $(error Kernel header dirs must be end in kernel-headers: $(1))) |
| 226 | endef |
Dima Zavin | 4e16f96 | 2012-03-14 23:50:17 -0700 | [diff] [blame] | 227 | # also allow the board config to provide additional directories since |
| 228 | # there could be device/oem/base_hw and device/oem/derived_hw |
| 229 | # that both are valid devices but derived_hw needs to use kernel headers |
| 230 | # from base_hw. |
| 231 | TARGET_BOARD_KERNEL_HEADERS := $(strip $(wildcard $(TARGET_BOARD_KERNEL_HEADERS))) |
| 232 | TARGET_BOARD_KERNEL_HEADERS := $(patsubst %/,%,$(TARGET_BOARD_KERNEL_HEADERS)) |
Dima Zavin | f926990 | 2012-03-16 09:57:11 -0700 | [diff] [blame] | 233 | $(call validate-kernel-headers,$(TARGET_BOARD_KERNEL_HEADERS)) |
| 234 | |
| 235 | # then add product-inherited includes, to allow for |
| 236 | # hardware/sivendor/chip/chip.mk to include their own headers |
| 237 | TARGET_PRODUCT_KERNEL_HEADERS := $(strip $(wildcard $(PRODUCT_VENDOR_KERNEL_HEADERS))) |
| 238 | TARGET_PRODUCT_KERNEL_HEADERS := $(patsubst %/,%,$(TARGET_PRODUCT_KERNEL_HEADERS)) |
| 239 | $(call validate-kernel-headers,$(TARGET_PRODUCT_KERNEL_HEADERS)) |
Dima Zavin | 4e16f96 | 2012-03-14 23:50:17 -0700 | [diff] [blame] | 240 | |
Patrick Scott | 87c8657 | 2009-06-23 15:25:06 -0400 | [diff] [blame] | 241 | # Clean up/verify variables defined by the board config file. |
| 242 | TARGET_BOOTLOADER_BOARD_NAME := $(strip $(TARGET_BOOTLOADER_BOARD_NAME)) |
| 243 | TARGET_CPU_ABI := $(strip $(TARGET_CPU_ABI)) |
| 244 | ifeq ($(TARGET_CPU_ABI),) |
| 245 | $(error No TARGET_CPU_ABI defined by board config: $(board_config_mk)) |
| 246 | endif |
David 'Digit' Turner | 2edfb71 | 2009-11-06 15:12:00 -0800 | [diff] [blame] | 247 | TARGET_CPU_ABI2 := $(strip $(TARGET_CPU_ABI2)) |
Patrick Scott | 87c8657 | 2009-06-23 15:25:06 -0400 | [diff] [blame] | 248 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 249 | combo_target := HOST_ |
Ying Wang | e1d44c3 | 2013-12-27 11:09:36 -0800 | [diff] [blame] | 250 | combo_2nd_arch_prefix := |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 251 | include $(BUILD_SYSTEM)/combo/select.mk |
| 252 | |
Ying Wang | 6feb6d5 | 2014-04-17 10:03:35 -0700 | [diff] [blame] | 253 | # Load the 2nd host arch if it's needed. |
| 254 | ifdef HOST_2ND_ARCH |
| 255 | combo_target := HOST_ |
| 256 | combo_2nd_arch_prefix := $(HOST_2ND_ARCH_VAR_PREFIX) |
| 257 | include $(BUILD_SYSTEM)/combo/select.mk |
| 258 | endif |
| 259 | |
Dan Willemsen | 057aaea | 2015-08-14 12:59:50 -0700 | [diff] [blame^] | 260 | # Load the windows cross compiler under Linux |
| 261 | ifdef HOST_CROSS_OS |
| 262 | combo_target := HOST_CROSS_ |
| 263 | combo_2nd_arch_prefix := |
| 264 | include $(BUILD_SYSTEM)/combo/select.mk |
| 265 | endif |
| 266 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 267 | # on windows, the tools have .exe at the end, and we depend on the |
| 268 | # host config stuff being done first |
| 269 | |
| 270 | combo_target := TARGET_ |
Ying Wang | e1d44c3 | 2013-12-27 11:09:36 -0800 | [diff] [blame] | 271 | combo_2nd_arch_prefix := |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 272 | include $(BUILD_SYSTEM)/combo/select.mk |
| 273 | |
Ying Wang | e1d44c3 | 2013-12-27 11:09:36 -0800 | [diff] [blame] | 274 | # Load the 2nd target arch if it's needed. |
| 275 | ifdef TARGET_2ND_ARCH |
| 276 | combo_target := TARGET_ |
| 277 | combo_2nd_arch_prefix := $(TARGET_2ND_ARCH_VAR_PREFIX) |
| 278 | include $(BUILD_SYSTEM)/combo/select.mk |
| 279 | endif |
| 280 | |
Ying Wang | 57d9060 | 2015-07-20 18:40:18 -0700 | [diff] [blame] | 281 | include $(BUILD_SYSTEM)/ccache.mk |
Shinichiro Hamaji | ee482fd | 2015-08-17 17:38:24 +0900 | [diff] [blame] | 282 | include $(BUILD_SYSTEM)/goma.mk |
Ying Wang | 57d9060 | 2015-07-20 18:40:18 -0700 | [diff] [blame] | 283 | |
Colin Cross | a3339e9 | 2014-04-30 18:09:13 -0700 | [diff] [blame] | 284 | ifdef TARGET_PREFER_32_BIT |
| 285 | TARGET_PREFER_32_BIT_APPS := true |
| 286 | TARGET_PREFER_32_BIT_EXECUTABLES := true |
| 287 | endif |
| 288 | |
Colin Cross | 2a4f0ff | 2014-04-30 18:18:02 -0700 | [diff] [blame] | 289 | ifeq (,$(TARGET_SUPPORTS_32_BIT_APPS)$(TARGET_SUPPORTS_64_BIT_APPS)) |
| 290 | TARGET_SUPPORTS_32_BIT_APPS := true |
Narayan Kamath | 7303ebd | 2014-04-07 11:01:54 +0100 | [diff] [blame] | 291 | endif |
| 292 | |
| 293 | # "ro.product.cpu.abilist32" and "ro.product.cpu.abilist64" are |
| 294 | # comma separated lists of the 32 and 64 bit ABIs (in order of |
| 295 | # preference) that the target supports. If TARGET_CPU_ABI_LIST_{32,64}_BIT |
| 296 | # are defined by the board config, we use them. Else, we construct |
| 297 | # these lists based on whether TARGET_IS_64_BIT is set. |
| 298 | # |
| 299 | # Note that this assumes that the 2ND_CPU_ABI for a 64 bit target |
| 300 | # is always 32 bits. If this isn't the case, these variables should |
Brian Carlstrom | d795046 | 2014-06-16 16:51:42 -0700 | [diff] [blame] | 301 | # be overriden in the board configuration. |
Narayan Kamath | 7303ebd | 2014-04-07 11:01:54 +0100 | [diff] [blame] | 302 | ifeq (,$(TARGET_CPU_ABI_LIST_64_BIT)) |
Colin Cross | 2a4f0ff | 2014-04-30 18:18:02 -0700 | [diff] [blame] | 303 | ifeq (true|true,$(TARGET_IS_64_BIT)|$(TARGET_SUPPORTS_64_BIT_APPS)) |
Narayan Kamath | 7303ebd | 2014-04-07 11:01:54 +0100 | [diff] [blame] | 304 | TARGET_CPU_ABI_LIST_64_BIT := $(TARGET_CPU_ABI) $(TARGET_CPU_ABI2) |
| 305 | endif |
| 306 | endif |
| 307 | |
| 308 | ifeq (,$(TARGET_CPU_ABI_LIST_32_BIT)) |
| 309 | ifneq (true,$(TARGET_IS_64_BIT)) |
| 310 | TARGET_CPU_ABI_LIST_32_BIT := $(TARGET_CPU_ABI) $(TARGET_CPU_ABI2) |
| 311 | else |
Colin Cross | 2a4f0ff | 2014-04-30 18:18:02 -0700 | [diff] [blame] | 312 | ifeq (true,$(TARGET_SUPPORTS_32_BIT_APPS)) |
| 313 | # For a 64 bit target, assume that the 2ND_CPU_ABI |
| 314 | # is a 32 bit ABI. |
| 315 | TARGET_CPU_ABI_LIST_32_BIT := $(TARGET_2ND_CPU_ABI) $(TARGET_2ND_CPU_ABI2) |
| 316 | endif |
| 317 | endif |
| 318 | endif |
| 319 | |
| 320 | # "ro.product.cpu.abilist" is a comma separated list of ABIs (in order |
| 321 | # of preference) that the target supports. If a TARGET_CPU_ABI_LIST |
| 322 | # is specified by the board configuration, we use that. If not, we |
| 323 | # build a list out of the TARGET_CPU_ABIs specified by the config. |
| 324 | ifeq (,$(TARGET_CPU_ABI_LIST)) |
| 325 | ifeq ($(TARGET_IS_64_BIT)|$(TARGET_PREFER_32_BIT_APPS),true|true) |
| 326 | TARGET_CPU_ABI_LIST := $(TARGET_CPU_ABI_LIST_32_BIT) $(TARGET_CPU_ABI_LIST_64_BIT) |
| 327 | else |
| 328 | TARGET_CPU_ABI_LIST := $(TARGET_CPU_ABI_LIST_64_BIT) $(TARGET_CPU_ABI_LIST_32_BIT) |
Narayan Kamath | 7303ebd | 2014-04-07 11:01:54 +0100 | [diff] [blame] | 329 | endif |
| 330 | endif |
| 331 | |
| 332 | # Strip whitespace from the ABI list string. |
| 333 | TARGET_CPU_ABI_LIST := $(subst $(space),$(comma),$(strip $(TARGET_CPU_ABI_LIST))) |
| 334 | TARGET_CPU_ABI_LIST_32_BIT := $(subst $(space),$(comma),$(strip $(TARGET_CPU_ABI_LIST_32_BIT))) |
| 335 | TARGET_CPU_ABI_LIST_64_BIT := $(subst $(space),$(comma),$(strip $(TARGET_CPU_ABI_LIST_64_BIT))) |
| 336 | |
Ying Wang | df2b4b3 | 2012-01-12 16:38:17 -0800 | [diff] [blame] | 337 | # Compute TARGET_TOOLCHAIN_ROOT from TARGET_TOOLS_PREFIX |
| 338 | # if only TARGET_TOOLS_PREFIX is passed to the make command. |
| 339 | ifndef TARGET_TOOLCHAIN_ROOT |
| 340 | TARGET_TOOLCHAIN_ROOT := $(patsubst %/, %, $(dir $(TARGET_TOOLS_PREFIX))) |
| 341 | TARGET_TOOLCHAIN_ROOT := $(patsubst %/, %, $(dir $(TARGET_TOOLCHAIN_ROOT))) |
| 342 | TARGET_TOOLCHAIN_ROOT := $(wildcard $(TARGET_TOOLCHAIN_ROOT)) |
| 343 | endif |
| 344 | |
Andrew Hsieh | 906cb78 | 2013-09-10 17:37:14 +0800 | [diff] [blame] | 345 | # Normalize WITH_STATIC_ANALYZER and WITH_SYNTAX_CHECK |
| 346 | ifeq ($(strip $(WITH_STATIC_ANALYZER)),0) |
| 347 | WITH_STATIC_ANALYZER := |
| 348 | endif |
| 349 | ifeq ($(strip $(WITH_SYNTAX_CHECK)),0) |
| 350 | WITH_SYNTAX_CHECK := |
| 351 | endif |
| 352 | |
| 353 | # Disable WITH_STATIC_ANALYZER and WITH_SYNTAX_CHECK if tool can't be found |
Andrew Hsieh | c4f7fba | 2014-03-03 16:53:17 +0800 | [diff] [blame] | 354 | SYNTAX_TOOLS_PREFIX := prebuilts/misc/$(HOST_PREBUILT_TAG)/analyzer/bin |
Andrew Hsieh | 906cb78 | 2013-09-10 17:37:14 +0800 | [diff] [blame] | 355 | ifneq ($(strip $(WITH_STATIC_ANALYZER)),) |
| 356 | ifeq ($(wildcard $(SYNTAX_TOOLS_PREFIX)/ccc-analyzer),) |
| 357 | $(warning *** Disable WITH_STATIC_ANALYZER because $(SYNTAX_TOOLS_PREFIX)/ccc-analyzer does not exist) |
| 358 | WITH_STATIC_ANALYZER := |
| 359 | endif |
| 360 | endif |
Andrew Hsieh | e7c2d14 | 2013-08-27 17:55:46 +0800 | [diff] [blame] | 361 | ifneq ($(strip $(WITH_SYNTAX_CHECK)),) |
| 362 | ifeq ($(wildcard $(SYNTAX_TOOLS_PREFIX)/ccc-syntax),) |
| 363 | $(warning *** Disable WITH_SYNTAX_CHECK because $(SYNTAX_TOOLS_PREFIX)/ccc-syntax does not exist) |
| 364 | WITH_SYNTAX_CHECK := |
| 365 | endif |
| 366 | endif |
| 367 | |
Andrew Hsieh | 906cb78 | 2013-09-10 17:37:14 +0800 | [diff] [blame] | 368 | # WITH_STATIC_ANALYZER trumps WITH_SYNTAX_CHECK |
| 369 | ifneq ($(strip $(WITH_STATIC_ANALYZER)),) |
| 370 | ifneq ($(strip $(WITH_SYNTAX_CHECK)),) |
| 371 | $(warning *** Disable WITH_SYNTAX_CHECK in the presence of static analyzer WITH_STATIC_ANALYZER) |
| 372 | WITH_SYNTAX_CHECK := |
| 373 | endif |
| 374 | endif |
| 375 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 376 | # Pick a Java compiler. |
| 377 | include $(BUILD_SYSTEM)/combo/javac.mk |
| 378 | |
| 379 | # --------------------------------------------------------------- |
| 380 | # Check that the configuration is current. We check that |
| 381 | # BUILD_ENV_SEQUENCE_NUMBER is current against this value. |
| 382 | # Don't fail if we're called from envsetup, so they have a |
| 383 | # chance to update their environment. |
| 384 | |
| 385 | ifeq (,$(strip $(CALLED_FROM_SETUP))) |
| 386 | ifneq (,$(strip $(BUILD_ENV_SEQUENCE_NUMBER))) |
| 387 | ifneq ($(BUILD_ENV_SEQUENCE_NUMBER),$(CORRECT_BUILD_ENV_SEQUENCE_NUMBER)) |
| 388 | $(warning BUILD_ENV_SEQUENCE_NUMBER is set incorrectly.) |
| 389 | $(info *** If you use envsetup/lunch/choosecombo:) |
| 390 | $(info *** - Re-execute envsetup (". envsetup.sh")) |
| 391 | $(info *** - Re-run lunch or choosecombo) |
| 392 | $(info *** If you use buildspec.mk:) |
| 393 | $(info *** - Look at buildspec.mk.default to see what has changed) |
| 394 | $(info *** - Update BUILD_ENV_SEQUENCE_NUMBER to "$(CORRECT_BUILD_ENV_SEQUENCE_NUMBER)") |
| 395 | $(error bailing..) |
| 396 | endif |
| 397 | endif |
| 398 | endif |
| 399 | |
| 400 | |
| 401 | # --------------------------------------------------------------- |
| 402 | # Generic tools. |
Yohann Roussel | f09e59e | 2014-09-08 14:45:14 +0200 | [diff] [blame] | 403 | JACK := $(HOST_OUT_EXECUTABLES)/jack |
| 404 | JACK_JAR := $(HOST_OUT_JAVA_LIBRARIES)/jack.jar |
| 405 | JACK_LAUNCHER_JAR := $(HOST_OUT_JAVA_LIBRARIES)/jack-launcher.jar |
| 406 | JILL_JAR := $(HOST_OUT_JAVA_LIBRARIES)/jill.jar |
| 407 | JACK_MULTIDEX_DEFAULT_PREPROCESSOR := frameworks/multidex/library/resources/JACK-INF/legacyMultidexInstallation.jpp |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 408 | |
Ying Wang | 6374153 | 2014-05-16 09:37:23 -0700 | [diff] [blame] | 409 | LEX := prebuilts/misc/$(BUILD_OS)-$(HOST_PREBUILT_ARCH)/flex/flex-2.5.39 |
Ying Wang | 854be68 | 2013-04-05 18:02:16 -0700 | [diff] [blame] | 410 | # The default PKGDATADIR built in the prebuilt bison is a relative path |
| 411 | # external/bison/data. |
| 412 | # To run bison from elsewhere you need to set up enviromental variable |
| 413 | # BISON_PKGDATADIR. |
| 414 | BISON_PKGDATADIR := $(PWD)/external/bison/data |
Ying Wang | 6feb6d5 | 2014-04-17 10:03:35 -0700 | [diff] [blame] | 415 | BISON := prebuilts/misc/$(BUILD_OS)-$(HOST_PREBUILT_ARCH)/bison/bison |
Ying Wang | 854be68 | 2013-04-05 18:02:16 -0700 | [diff] [blame] | 416 | YACC := $(BISON) -d |
| 417 | |
Ying Wang | 7b913ce | 2014-06-05 19:05:47 -0700 | [diff] [blame] | 418 | YASM := prebuilts/misc/$(BUILD_OS)-$(HOST_PREBUILT_ARCH)/yasm/yasm |
| 419 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 420 | DOXYGEN:= doxygen |
| 421 | AAPT := $(HOST_OUT_EXECUTABLES)/aapt$(HOST_EXECUTABLE_SUFFIX) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 422 | AIDL := $(HOST_OUT_EXECUTABLES)/aidl$(HOST_EXECUTABLE_SUFFIX) |
Wink Saville | e789083 | 2010-11-05 11:28:51 -0700 | [diff] [blame] | 423 | PROTOC := $(HOST_OUT_EXECUTABLES)/aprotoc$(HOST_EXECUTABLE_SUFFIX) |
Christopher Wiley | bc2be46 | 2015-07-29 17:14:24 -0700 | [diff] [blame] | 424 | DBUS_GENERATOR := $(HOST_OUT_EXECUTABLES)/dbus-binding-generator |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 425 | SIGNAPK_JAR := $(HOST_OUT_JAVA_LIBRARIES)/signapk$(COMMON_JAVA_PACKAGE_SUFFIX) |
| 426 | MKBOOTFS := $(HOST_OUT_EXECUTABLES)/mkbootfs$(HOST_EXECUTABLE_SUFFIX) |
Doug Zongker | 8b70e8c | 2009-05-27 09:14:25 -0700 | [diff] [blame] | 427 | MINIGZIP := $(HOST_OUT_EXECUTABLES)/minigzip$(HOST_EXECUTABLE_SUFFIX) |
Bjorn Andersson | 612e2cd | 2012-11-25 16:53:44 -0800 | [diff] [blame] | 428 | ifeq (,$(strip $(BOARD_CUSTOM_MKBOOTIMG))) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 429 | MKBOOTIMG := $(HOST_OUT_EXECUTABLES)/mkbootimg$(HOST_EXECUTABLE_SUFFIX) |
Bjorn Andersson | 612e2cd | 2012-11-25 16:53:44 -0800 | [diff] [blame] | 430 | else |
| 431 | MKBOOTIMG := $(BOARD_CUSTOM_MKBOOTIMG) |
| 432 | endif |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 433 | APICHECK := $(HOST_OUT_EXECUTABLES)/apicheck$(HOST_EXECUTABLE_SUFFIX) |
| 434 | FS_GET_STATS := $(HOST_OUT_EXECUTABLES)/fs_get_stats$(HOST_EXECUTABLE_SUFFIX) |
Colin Cross | 9dd4ba8 | 2010-08-03 14:43:15 -0700 | [diff] [blame] | 435 | MAKE_EXT4FS := $(HOST_OUT_EXECUTABLES)/make_ext4fs$(HOST_EXECUTABLE_SUFFIX) |
Ying Wang | 542903a | 2010-11-17 15:40:38 -0800 | [diff] [blame] | 436 | MKEXTUSERIMG := $(HOST_OUT_EXECUTABLES)/mkuserimg.sh |
Mohamad Ayyash | b97746e | 2015-03-03 12:30:37 -0800 | [diff] [blame] | 437 | ifeq ($(HOST_OS),linux) |
| 438 | MAKE_SQUASHFS := $(HOST_OUT_EXECUTABLES)/mksquashfs$(HOST_EXECUTABLE_SUFFIX) |
| 439 | MKSQUASHFSUSERIMG := $(HOST_OUT_EXECUTABLES)/mksquashfsimage.sh |
| 440 | else |
| 441 | MAKE_SQUASHFS := |
| 442 | MKSQUASHFSUSERIMG := |
| 443 | endif |
JP Abgrall | 5bfed5a | 2014-06-16 14:17:40 -0700 | [diff] [blame] | 444 | MAKE_F2FS := $(HOST_OUT_EXECUTABLES)/make_f2fs$(HOST_EXECUTABLE_SUFFIX) |
| 445 | MKF2FSUSERIMG := $(HOST_OUT_EXECUTABLES)/mkf2fsuserimg.sh |
Ying Wang | 69e9b4d | 2012-11-26 18:10:23 -0800 | [diff] [blame] | 446 | SIMG2IMG := $(HOST_OUT_EXECUTABLES)/simg2img$(HOST_EXECUTABLE_SUFFIX) |
Mohamad Ayyash | 9764892 | 2015-06-24 15:42:19 -0700 | [diff] [blame] | 447 | IMG2SIMG := $(HOST_OUT_EXECUTABLES)/img2simg$(HOST_EXECUTABLE_SUFFIX) |
Ying Wang | 69e9b4d | 2012-11-26 18:10:23 -0800 | [diff] [blame] | 448 | E2FSCK := $(HOST_OUT_EXECUTABLES)/e2fsck$(HOST_EXECUTABLE_SUFFIX) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 449 | MKTARBALL := build/tools/mktarball.sh |
Colin Cross | 0a7b2c5 | 2010-05-07 02:23:59 -0700 | [diff] [blame] | 450 | TUNE2FS := $(HOST_OUT_EXECUTABLES)/tune2fs$(HOST_EXECUTABLE_SUFFIX) |
| 451 | E2FSCK := $(HOST_OUT_EXECUTABLES)/e2fsck$(HOST_EXECUTABLE_SUFFIX) |
Steve Howard | ef5c640 | 2010-05-03 15:01:38 -0700 | [diff] [blame] | 452 | JARJAR := $(HOST_OUT_JAVA_LIBRARIES)/jarjar.jar |
Yohann Roussel | f09e59e | 2014-09-08 14:45:14 +0200 | [diff] [blame] | 453 | |
| 454 | ifeq ($(ANDROID_COMPILE_WITH_JACK),true) |
| 455 | DEFAULT_JACK_ENABLED:=full |
| 456 | else |
| 457 | DEFAULT_JACK_ENABLED:= |
| 458 | endif |
| 459 | ifneq ($(strip $(ANDROID_JACK_VM)),) |
| 460 | JACK_VM := $(ANDROID_JACK_VM) |
| 461 | else |
| 462 | JACK_VM := java |
| 463 | endif |
| 464 | # call jack |
| 465 | # |
| 466 | # $(1): vm arguments |
| 467 | # $(2): jack perf arguments |
| 468 | ifneq (,$(strip $(filter dist,$(MAKECMDGOALS)))) |
| 469 | JACK_SERVER_LOG_COMMAND := mkdir -p $(DIST_DIR)/logs/; SERVER_LOG=$(DIST_DIR)/logs/jack-server.log |
| 470 | endif |
| 471 | define call-jack |
| 472 | $(JACK_SERVER_LOG_COMMAND) JACK_VM_COMMAND="$(JACK_VM) $(1) $(JAVA_TMPDIR_ARG) -jar $(JACK_LAUNCHER_JAR) " JACK_JAR="$(JACK_JAR)" $(JACK) $(2) |
| 473 | endef |
| 474 | $(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_JACK_VM_ARGS := $(DEFAULT_JACK_VM_ARGS) |
| 475 | ifneq ($(ANDROID_JACK_VM_ARGS),) |
| 476 | DEFAULT_JACK_VM_ARGS := $(ANDROID_JACK_VM_ARGS) |
| 477 | else |
| 478 | DEFAULT_JACK_VM_ARGS := -Dfile.encoding=UTF-8 -Xms2560m -XX:+TieredCompilation |
| 479 | endif |
| 480 | ifneq ($(ANDROID_JACK_EXTRA_ARGS),) |
| 481 | DEFAULT_JACK_EXTRA_ARGS := $(ANDROID_JACK_EXTRA_ARGS) |
| 482 | else |
| 483 | DEFAULT_JACK_EXTRA_ARGS := @$(BUILD_SYSTEM)/jack-default.args |
| 484 | endif |
| 485 | # Turn off jack warnings by default. |
| 486 | DEFAULT_JACK_EXTRA_ARGS += --verbose error |
| 487 | |
| 488 | JILL := java -jar $(JILL_JAR) |
Joe Onorato | 2daa2b3 | 2009-08-30 13:39:24 -0700 | [diff] [blame] | 489 | PROGUARD := external/proguard/bin/proguard.sh |
Doug Zongker | 9bd4962 | 2009-11-30 14:28:59 -0800 | [diff] [blame] | 490 | JAVATAGS := build/tools/java-event-log-tags.py |
Shih-wei Liao | d01fadb | 2010-10-08 16:57:46 -0700 | [diff] [blame] | 491 | LLVM_RS_CC := $(HOST_OUT_EXECUTABLES)/llvm-rs-cc$(HOST_EXECUTABLE_SUFFIX) |
Stephen Hines | e719f28 | 2012-11-28 16:52:41 -0800 | [diff] [blame] | 492 | BCC_COMPAT := $(HOST_OUT_EXECUTABLES)/bcc_compat$(HOST_EXECUTABLE_SUFFIX) |
Ying Wang | a3b7593 | 2013-08-14 16:59:00 -0700 | [diff] [blame] | 493 | RMTYPEDEFS := $(HOST_OUT_EXECUTABLES)/rmtypedefs |
Colin Cross | 8a30f72 | 2014-04-28 16:27:32 -0700 | [diff] [blame] | 494 | APPEND2SIMG := $(HOST_OUT_EXECUTABLES)/append2simg |
| 495 | VERITY_SIGNER := $(HOST_OUT_EXECUTABLES)/verity_signer |
Colin Cross | 477cf2b | 2014-04-16 18:49:56 -0700 | [diff] [blame] | 496 | BUILD_VERITY_TREE := $(HOST_OUT_EXECUTABLES)/build_verity_tree |
Geremy Condra | 740b663 | 2014-07-08 20:07:41 -0700 | [diff] [blame] | 497 | BOOT_SIGNER := $(HOST_OUT_EXECUTABLES)/boot_signer |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 498 | |
Raphael | 9ca1628 | 2010-04-16 17:50:09 -0700 | [diff] [blame] | 499 | # ACP is always for the build OS, not for the host OS |
| 500 | ACP := $(BUILD_OUT_EXECUTABLES)/acp$(BUILD_EXECUTABLE_SUFFIX) |
| 501 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 502 | # dx is java behind a shell script; no .exe necessary. |
| 503 | DX := $(HOST_OUT_EXECUTABLES)/dx |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 504 | ZIPALIGN := $(HOST_OUT_EXECUTABLES)/zipalign$(HOST_EXECUTABLE_SUFFIX) |
Dmitriy Ivanov | 4c2d1a6 | 2015-04-20 16:59:05 -0700 | [diff] [blame] | 505 | |
| 506 | # relocation packer |
| 507 | RELOCATION_PACKER := prebuilts/misc/$(BUILD_OS)-$(HOST_PREBUILT_ARCH)/relocation_packer/relocation_packer |
| 508 | |
Yuncheol Heo | 623d706 | 2014-05-20 17:04:16 +0900 | [diff] [blame] | 509 | FINDBUGS_DIR := external/owasp/sanitizer/tools/findbugs/bin |
| 510 | FINDBUGS := $(FINDBUGS_DIR)/findbugs |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 511 | EMMA_JAR := external/emma/lib/emma$(COMMON_JAVA_PACKAGE_SUFFIX) |
| 512 | |
Ying Wang | dc7fee9 | 2014-02-05 18:24:45 -0800 | [diff] [blame] | 513 | # Tool to merge AndroidManifest.xmls |
| 514 | ANDROID_MANIFEST_MERGER := java -classpath prebuilts/devtools/tools/lib/manifest-merger.jar com.android.manifmerger.Main merge |
| 515 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 516 | YACC_HEADER_SUFFIX:= .hpp |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 517 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 518 | COLUMN:= column |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 519 | |
Narayan Kamath | ab2e2e7 | 2013-12-05 15:20:41 +0000 | [diff] [blame] | 520 | HOST_JDK_TOOLS_JAR:= $(shell $(BUILD_SYSTEM)/find-jdk-tools-jar.sh) |
Narayan Kamath | ab2e2e7 | 2013-12-05 15:20:41 +0000 | [diff] [blame] | 521 | |
| 522 | ifneq ($(HOST_JDK_TOOLS_JAR),) |
Ying Wang | ec5e729 | 2010-04-26 18:36:52 -0700 | [diff] [blame] | 523 | ifeq ($(wildcard $(HOST_JDK_TOOLS_JAR)),) |
Chris Wren | 1f11575 | 2014-03-07 14:51:56 -0500 | [diff] [blame] | 524 | $(error Error: could not find jdk tools.jar, please check if your JDK was installed correctly) |
Ying Wang | ec5e729 | 2010-04-26 18:36:52 -0700 | [diff] [blame] | 525 | endif |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 526 | endif |
| 527 | |
Ying Wang | 053dccb | 2011-05-24 15:46:15 -0700 | [diff] [blame] | 528 | # Is the host JDK 64-bit version? |
| 529 | HOST_JDK_IS_64BIT_VERSION := |
| 530 | ifneq ($(filter 64-Bit, $(shell java -version 2>&1)),) |
| 531 | HOST_JDK_IS_64BIT_VERSION := true |
| 532 | endif |
| 533 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 534 | # It's called md5 on Mac OS and md5sum on Linux |
| 535 | ifeq ($(HOST_OS),darwin) |
| 536 | MD5SUM:=md5 -q |
| 537 | else |
| 538 | MD5SUM:=md5sum |
| 539 | endif |
| 540 | |
Joe Onorato | 2a6e052 | 2011-04-08 17:32:52 -0700 | [diff] [blame] | 541 | APICHECK_CLASSPATH := $(HOST_JDK_TOOLS_JAR) |
| 542 | APICHECK_CLASSPATH := $(APICHECK_CLASSPATH):$(HOST_OUT_JAVA_LIBRARIES)/doclava$(COMMON_JAVA_PACKAGE_SUFFIX) |
| 543 | APICHECK_CLASSPATH := $(APICHECK_CLASSPATH):$(HOST_OUT_JAVA_LIBRARIES)/jsilver$(COMMON_JAVA_PACKAGE_SUFFIX) |
| 544 | APICHECK_COMMAND := $(APICHECK) -JXmx1024m -J"classpath $(APICHECK_CLASSPATH)" |
| 545 | |
Ying Wang | 3c21fe5 | 2011-10-04 10:50:08 -0700 | [diff] [blame] | 546 | # The default key if not set as LOCAL_CERTIFICATE |
| 547 | ifdef PRODUCT_DEFAULT_DEV_CERTIFICATE |
| 548 | DEFAULT_SYSTEM_DEV_CERTIFICATE := $(PRODUCT_DEFAULT_DEV_CERTIFICATE) |
| 549 | else |
| 550 | DEFAULT_SYSTEM_DEV_CERTIFICATE := build/target/product/security/testkey |
| 551 | endif |
| 552 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 553 | # ############################################################### |
| 554 | # Set up final options. |
| 555 | # ############################################################### |
| 556 | |
| 557 | HOST_GLOBAL_CFLAGS += $(COMMON_GLOBAL_CFLAGS) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 558 | HOST_RELEASE_CFLAGS += $(COMMON_RELEASE_CFLAGS) |
| 559 | |
| 560 | HOST_GLOBAL_CPPFLAGS += $(COMMON_GLOBAL_CPPFLAGS) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 561 | HOST_RELEASE_CPPFLAGS += $(COMMON_RELEASE_CPPFLAGS) |
| 562 | |
| 563 | TARGET_GLOBAL_CFLAGS += $(COMMON_GLOBAL_CFLAGS) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 564 | TARGET_RELEASE_CFLAGS += $(COMMON_RELEASE_CFLAGS) |
| 565 | |
| 566 | TARGET_GLOBAL_CPPFLAGS += $(COMMON_GLOBAL_CPPFLAGS) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 567 | TARGET_RELEASE_CPPFLAGS += $(COMMON_RELEASE_CPPFLAGS) |
| 568 | |
| 569 | HOST_GLOBAL_LD_DIRS += -L$(HOST_OUT_INTERMEDIATE_LIBRARIES) |
| 570 | TARGET_GLOBAL_LD_DIRS += -L$(TARGET_OUT_INTERMEDIATE_LIBRARIES) |
| 571 | |
| 572 | HOST_PROJECT_INCLUDES:= $(SRC_HEADERS) $(SRC_HOST_HEADERS) $(HOST_OUT_HEADERS) |
Dima Zavin | 4e16f96 | 2012-03-14 23:50:17 -0700 | [diff] [blame] | 573 | TARGET_PROJECT_INCLUDES:= $(SRC_HEADERS) $(TARGET_OUT_HEADERS) \ |
Dima Zavin | 8e4042c | 2012-03-30 10:24:31 -0700 | [diff] [blame] | 574 | $(TARGET_DEVICE_KERNEL_HEADERS) $(TARGET_BOARD_KERNEL_HEADERS) \ |
| 575 | $(TARGET_PRODUCT_KERNEL_HEADERS) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 576 | |
| 577 | # Many host compilers don't support these flags, so we have to make |
| 578 | # sure to only specify them for the target compilers checked in to |
Jeff Brown | e33ba4c | 2011-07-11 22:11:46 -0700 | [diff] [blame] | 579 | # the source tree. |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 580 | TARGET_GLOBAL_CFLAGS += $(TARGET_ERROR_FLAGS) |
| 581 | TARGET_GLOBAL_CPPFLAGS += $(TARGET_ERROR_FLAGS) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 582 | |
Dave Bort | 9528248 | 2009-04-23 18:44:55 -0700 | [diff] [blame] | 583 | HOST_GLOBAL_CFLAGS += $(HOST_RELEASE_CFLAGS) |
| 584 | HOST_GLOBAL_CPPFLAGS += $(HOST_RELEASE_CPPFLAGS) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 585 | |
Dave Bort | 9528248 | 2009-04-23 18:44:55 -0700 | [diff] [blame] | 586 | TARGET_GLOBAL_CFLAGS += $(TARGET_RELEASE_CFLAGS) |
| 587 | TARGET_GLOBAL_CPPFLAGS += $(TARGET_RELEASE_CPPFLAGS) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 588 | |
Ying Wang | e1d44c3 | 2013-12-27 11:09:36 -0800 | [diff] [blame] | 589 | ifdef TARGET_2ND_ARCH |
Ying Wang | 9fb3526 | 2014-02-21 16:17:05 -0800 | [diff] [blame] | 590 | $(TARGET_2ND_ARCH_VAR_PREFIX)TARGET_GLOBAL_CFLAGS += $(COMMON_GLOBAL_CFLAGS) |
| 591 | $(TARGET_2ND_ARCH_VAR_PREFIX)TARGET_RELEASE_CFLAGS += $(COMMON_RELEASE_CFLAGS) |
| 592 | $(TARGET_2ND_ARCH_VAR_PREFIX)TARGET_GLOBAL_CPPFLAGS += $(COMMON_GLOBAL_CPPFLAGS) |
| 593 | $(TARGET_2ND_ARCH_VAR_PREFIX)TARGET_RELEASE_CPPFLAGS += $(COMMON_RELEASE_CPPFLAGS) |
| 594 | $(TARGET_2ND_ARCH_VAR_PREFIX)TARGET_GLOBAL_LD_DIRS += -L$($(TARGET_2ND_ARCH_VAR_PREFIX)TARGET_OUT_INTERMEDIATE_LIBRARIES) |
| 595 | $(TARGET_2ND_ARCH_VAR_PREFIX)TARGET_PROJECT_INCLUDES := $(TARGET_PROJECT_INCLUDES) |
| 596 | $(TARGET_2ND_ARCH_VAR_PREFIX)TARGET_GLOBAL_CFLAGS += $(TARGET_ERROR_FLAGS) |
| 597 | $(TARGET_2ND_ARCH_VAR_PREFIX)TARGET_GLOBAL_CPPFLAGS += $(TARGET_ERROR_FLAGS) |
| 598 | $(TARGET_2ND_ARCH_VAR_PREFIX)TARGET_GLOBAL_CFLAGS += $($(TARGET_2ND_ARCH_VAR_PREFIX)TARGET_RELEASE_CFLAGS) |
| 599 | $(TARGET_2ND_ARCH_VAR_PREFIX)TARGET_GLOBAL_CPPFLAGS += $($(TARGET_2ND_ARCH_VAR_PREFIX)TARGET_RELEASE_CPPFLAGS) |
Ying Wang | e1d44c3 | 2013-12-27 11:09:36 -0800 | [diff] [blame] | 600 | endif |
| 601 | |
Ying Wang | 6feb6d5 | 2014-04-17 10:03:35 -0700 | [diff] [blame] | 602 | ifdef HOST_2ND_ARCH |
| 603 | $(HOST_2ND_ARCH_VAR_PREFIX)HOST_GLOBAL_CFLAGS += $(COMMON_GLOBAL_CFLAGS) |
| 604 | $(HOST_2ND_ARCH_VAR_PREFIX)HOST_RELEASE_CFLAGS += $(COMMON_RELEASE_CFLAGS) |
| 605 | $(HOST_2ND_ARCH_VAR_PREFIX)HOST_GLOBAL_CPPFLAGS += $(COMMON_GLOBAL_CPPFLAGS) |
| 606 | $(HOST_2ND_ARCH_VAR_PREFIX)HOST_RELEASE_CPPFLAGS += $(COMMON_RELEASE_CPPFLAGS) |
| 607 | $(HOST_2ND_ARCH_VAR_PREFIX)HOST_GLOBAL_LD_DIRS += -L$($(HOST_2ND_ARCH_VAR_PREFIX)HOST_OUT_INTERMEDIATE_LIBRARIES) |
| 608 | $(HOST_2ND_ARCH_VAR_PREFIX)HOST_PROJECT_INCLUDES := $(HOST_PROJECT_INCLUDES) |
| 609 | $(HOST_2ND_ARCH_VAR_PREFIX)HOST_GLOBAL_CFLAGS += $($(HOST_2ND_ARCH_VAR_PREFIX)HOST_RELEASE_CFLAGS) |
| 610 | $(HOST_2ND_ARCH_VAR_PREFIX)HOST_GLOBAL_CPPFLAGS += $($(HOST_2ND_ARCH_VAR_PREFIX)HOST_RELEASE_CPPFLAGS) |
| 611 | endif |
| 612 | |
Dan Willemsen | 057aaea | 2015-08-14 12:59:50 -0700 | [diff] [blame^] | 613 | ifdef HOST_CROSS_OS |
| 614 | HOST_CROSS_GLOBAL_CFLAGS += $(COMMON_GLOBAL_CFLAGS) |
| 615 | HOST_CROSS_RELEASE_CFLAGS += $(COMMON_RELEASE_CFLAGS) |
| 616 | HOST_CROSS_GLOBAL_CPPFLAGS += $(COMMON_GLOBAL_CPPFLAGS) |
| 617 | HOST_CROSS_RELEASE_CPPFLAGS += $(COMMON_RELEASE_CPPFLAGS) |
| 618 | HOST_CROSS_GLOBAL_LD_DIRS += -L$(HOST_CROSS_OUT_INTERMEDIATE_LIBRARIES) |
| 619 | HOST_CROSS_PROJECT_INCLUDES:= $(SRC_HEADERS) $(SRC_HOST_HEADERS) $(HOST_CROSS_OUT_HEADERS) |
| 620 | HOST_CROSS_GLOBAL_CFLAGS += $(HOST_CROSS_RELEASE_CFLAGS) |
| 621 | HOST_CROSS_GLOBAL_CPPFLAGS += $(HOST_CROSS_RELEASE_CPPFLAGS) |
| 622 | endif |
| 623 | |
Mike Lockwood | c73018c | 2013-08-06 16:07:13 -0700 | [diff] [blame] | 624 | # allow overriding default Java libraries on a per-target basis |
| 625 | ifeq ($(TARGET_DEFAULT_JAVA_LIBRARIES),) |
Neil Fuller | f39a25b | 2015-08-11 13:48:34 +0100 | [diff] [blame] | 626 | TARGET_DEFAULT_JAVA_LIBRARIES := core-libart core-junit ext framework okhttp |
Mike Lockwood | c73018c | 2013-08-06 16:07:13 -0700 | [diff] [blame] | 627 | endif |
| 628 | |
Ian Rogers | 5d186ae | 2014-04-18 15:23:40 -0700 | [diff] [blame] | 629 | # Flags for DEX2OAT |
| 630 | DEX2OAT_TARGET_ARCH := $(TARGET_ARCH) |
Christopher Ferris | 9de4d5e | 2015-03-06 10:19:12 -0800 | [diff] [blame] | 631 | ifeq ($(TARGET_CPU_VARIANT),) |
| 632 | ifeq ($(TARGET_ARCH_VARIANT),) |
| 633 | DEX2OAT_TARGET_CPU_VARIANT := default |
| 634 | else |
| 635 | DEX2OAT_TARGET_CPU_VARIANT := $(TARGET_ARCH_VARIANT) |
| 636 | endif |
| 637 | else |
Ian Rogers | 5d186ae | 2014-04-18 15:23:40 -0700 | [diff] [blame] | 638 | DEX2OAT_TARGET_CPU_VARIANT := $(TARGET_CPU_VARIANT) |
Christopher Ferris | 9de4d5e | 2015-03-06 10:19:12 -0800 | [diff] [blame] | 639 | endif |
Ying Wang | 8c7e74e | 2014-03-20 12:13:10 -0700 | [diff] [blame] | 640 | DEX2OAT_TARGET_INSTRUCTION_SET_FEATURES := default |
Ying Wang | 8c7e74e | 2014-03-20 12:13:10 -0700 | [diff] [blame] | 641 | |
Ying Wang | b9aa5d4 | 2014-05-13 13:57:28 -0700 | [diff] [blame] | 642 | ifdef TARGET_2ND_ARCH |
| 643 | $(TARGET_2ND_ARCH_VAR_PREFIX)DEX2OAT_TARGET_ARCH := $(TARGET_2ND_ARCH) |
| 644 | $(TARGET_2ND_ARCH_VAR_PREFIX)DEX2OAT_TARGET_CPU_VARIANT := $(TARGET_2ND_CPU_VARIANT) |
| 645 | $(TARGET_2ND_ARCH_VAR_PREFIX)DEX2OAT_TARGET_INSTRUCTION_SET_FEATURES := default |
Ying Wang | b9aa5d4 | 2014-05-13 13:57:28 -0700 | [diff] [blame] | 646 | endif |
| 647 | |
Ying Wang | 1f98283 | 2014-02-06 18:08:44 -0800 | [diff] [blame] | 648 | # define clang/llvm tools and global flags |
| 649 | include $(BUILD_SYSTEM)/clang/config.mk |
yroussel | 1319005 | 2012-01-12 16:09:06 +0100 | [diff] [blame] | 650 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 651 | # ############################################################### |
| 652 | # Collect a list of the SDK versions that we could compile against |
| 653 | # For use with the LOCAL_SDK_VERSION variable for include $(BUILD_PACKAGE) |
| 654 | # ############################################################### |
| 655 | |
Ying Wang | 9978faf | 2011-11-29 10:24:27 -0800 | [diff] [blame] | 656 | HISTORICAL_SDK_VERSIONS_ROOT := $(TOPDIR)prebuilts/sdk |
Ying Wang | b50bd7f | 2011-11-29 11:20:16 -0800 | [diff] [blame] | 657 | HISTORICAL_NDK_VERSIONS_ROOT := $(TOPDIR)prebuilts/ndk |
Ying Wang | 0f6f4ca | 2010-06-09 10:26:26 -0700 | [diff] [blame] | 658 | |
| 659 | # Historical SDK version N is stored in $(HISTORICAL_SDK_VERSIONS_ROOT)/N. |
| 660 | # The 'current' version is whatever this source tree is. |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 661 | # |
| 662 | # sgrax is the opposite of xargs. It takes the list of args and puts them |
| 663 | # on each line for sort to process. |
| 664 | # sort -g is a numeric sort, so 1 2 3 10 instead of 1 10 2 3. |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 665 | |
Ying Wang | 0f6f4ca | 2010-06-09 10:26:26 -0700 | [diff] [blame] | 666 | # Numerically sort a list of numbers |
| 667 | # $(1): the list of numbers to be sorted |
| 668 | define numerically_sort |
| 669 | $(shell function sgrax() { \ |
| 670 | while [ -n "$$1" ] ; do echo $$1 ; shift ; done \ |
| 671 | } ; \ |
| 672 | ( sgrax $(1) | sort -g ) ) |
| 673 | endef |
| 674 | |
Ying Wang | a1ff629 | 2012-05-10 18:07:33 -0700 | [diff] [blame] | 675 | TARGET_AVAILABLE_SDK_VERSIONS := $(call numerically_sort,\ |
Ying Wang | 0f6f4ca | 2010-06-09 10:26:26 -0700 | [diff] [blame] | 676 | $(patsubst $(HISTORICAL_SDK_VERSIONS_ROOT)/%/android.jar,%, \ |
Ying Wang | 2f7b92c | 2014-07-21 13:44:06 -0700 | [diff] [blame] | 677 | $(wildcard $(HISTORICAL_SDK_VERSIONS_ROOT)/*/android.jar))) |
| 678 | |
| 679 | # We don't have prebuilt system_current SDK yet. |
Ying Wang | 02a83e9 | 2014-09-04 12:18:51 -0700 | [diff] [blame] | 680 | TARGET_AVAILABLE_SDK_VERSIONS := $(TARGET_AVAILABLE_SDK_VERSIONS) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 681 | |
Joe Onorato | 15ee93b | 2011-04-08 15:03:48 -0700 | [diff] [blame] | 682 | INTERNAL_PLATFORM_API_FILE := $(TARGET_OUT_COMMON_INTERMEDIATES)/PACKAGING/public_api.txt |
Hui Shu | e8af17e | 2014-02-21 14:18:19 -0800 | [diff] [blame] | 683 | INTERNAL_PLATFORM_REMOVED_API_FILE := $(TARGET_OUT_COMMON_INTERMEDIATES)/PACKAGING/removed.txt |
Ying Wang | 829f68b | 2014-06-26 17:54:28 -0700 | [diff] [blame] | 684 | INTERNAL_PLATFORM_SYSTEM_API_FILE := $(TARGET_OUT_COMMON_INTERMEDIATES)/PACKAGING/system-api.txt |
| 685 | INTERNAL_PLATFORM_SYSTEM_REMOVED_API_FILE := $(TARGET_OUT_COMMON_INTERMEDIATES)/PACKAGING/system-removed.txt |
Gary King | 1e80c29 | 2010-03-08 17:16:57 -0800 | [diff] [blame] | 686 | |
Bruce Beare | f1582e5 | 2010-10-14 14:31:48 -0700 | [diff] [blame] | 687 | # This is the standard way to name a directory containing prebuilt target |
| 688 | # objects. E.g., prebuilt/$(TARGET_PREBUILT_TAG)/libc.so |
Jeff Brown | e33ba4c | 2011-07-11 22:11:46 -0700 | [diff] [blame] | 689 | TARGET_PREBUILT_TAG := android-$(TARGET_ARCH) |
Colin Cross | 12d18eb | 2014-05-22 12:01:23 -0700 | [diff] [blame] | 690 | ifdef TARGET_2ND_ARCH |
| 691 | TARGET_2ND_PREBUILT_TAG := android-$(TARGET_2ND_ARCH) |
| 692 | endif |
Bruce Beare | f1582e5 | 2010-10-14 14:31:48 -0700 | [diff] [blame] | 693 | |
Tim Murray | 1a6f09a | 2013-03-05 11:07:15 -0800 | [diff] [blame] | 694 | # Set up RS prebuilt variables for compatibility library |
| 695 | |
Tim Murray | dc1d0ab | 2014-09-30 15:08:03 -0700 | [diff] [blame] | 696 | RS_PREBUILT_CLCORE := prebuilts/sdk/renderscript/lib/$(TARGET_ARCH)/librsrt_$(TARGET_ARCH).bc |
Tim Murray | 1a6f09a | 2013-03-05 11:07:15 -0800 | [diff] [blame] | 697 | RS_PREBUILT_LIBPATH := -L prebuilts/ndk/8/platforms/android-9/arch-$(TARGET_ARCH)/usr/lib |
| 698 | RS_PREBUILT_COMPILER_RT := prebuilts/sdk/renderscript/lib/$(TARGET_ARCH)/libcompiler_rt.a |
| 699 | |
Miao Wang | e4359cf | 2015-01-07 18:18:41 -0800 | [diff] [blame] | 700 | # API Level lists for Renderscript Compat lib. |
| 701 | RSCOMPAT_32BIT_ONLY_API_LEVELS := 8 9 10 11 12 13 14 15 16 17 18 19 20 |
Miao Wang | ec27a89 | 2014-11-20 11:05:18 -0800 | [diff] [blame] | 702 | RSCOMPAT_NO_USAGEIO_API_LEVELS := 8 9 10 11 12 13 |
Miao Wang | e4359cf | 2015-01-07 18:18:41 -0800 | [diff] [blame] | 703 | |
Ying Wang | 854be68 | 2013-04-05 18:02:16 -0700 | [diff] [blame] | 704 | include $(BUILD_SYSTEM)/dumpvar.mk |