The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1 | ########################################################### |
| 2 | ## Standard rules for building binary object files from |
| 3 | ## asm/c/cpp/yacc/lex source files. |
| 4 | ## |
| 5 | ## The list of object files is exported in $(all_objects). |
| 6 | ########################################################### |
| 7 | |
Ying Wang | 1a08100 | 2010-07-13 14:55:47 -0700 | [diff] [blame] | 8 | my_ndk_version_root := |
Ying Wang | 848020f | 2012-08-14 10:13:16 -0700 | [diff] [blame] | 9 | ifdef LOCAL_SDK_VERSION |
Ying Wang | fe1bfe7 | 2012-08-14 11:08:03 -0700 | [diff] [blame] | 10 | ifdef LOCAL_NDK_VERSION |
| 11 | $(error $(LOCAL_PATH): LOCAL_NDK_VERSION is now retired.) |
| 12 | endif |
Ying Wang | 1a08100 | 2010-07-13 14:55:47 -0700 | [diff] [blame] | 13 | ifdef LOCAL_IS_HOST_MODULE |
Ian Rogers | 76a6dc3 | 2012-10-01 16:36:23 -0700 | [diff] [blame] | 14 | $(error $(LOCAL_PATH): LOCAL_SDK_VERSION cannot be used in host module) |
Ying Wang | 1a08100 | 2010-07-13 14:55:47 -0700 | [diff] [blame] | 15 | endif |
Ying Wang | 848020f | 2012-08-14 10:13:16 -0700 | [diff] [blame] | 16 | my_ndk_source_root := $(HISTORICAL_NDK_VERSIONS_ROOT)/current/sources |
| 17 | my_ndk_version_root := $(HISTORICAL_NDK_VERSIONS_ROOT)/current/platforms/android-$(LOCAL_SDK_VERSION)/arch-$(TARGET_ARCH) |
Ying Wang | cce4c97 | 2011-03-03 18:53:53 -0800 | [diff] [blame] | 18 | |
| 19 | # Set up the NDK stl variant. Starting from NDK-r5 the c++ stl resides in a separate location. |
| 20 | # See ndk/docs/CPLUSPLUS-SUPPORT.html |
| 21 | my_ndk_stl_include_path := |
| 22 | my_ndk_stl_shared_lib_fullpath := |
| 23 | my_ndk_stl_shared_lib := |
| 24 | my_ndk_stl_static_lib := |
| 25 | ifeq (,$(LOCAL_NDK_STL_VARIANT)) |
| 26 | LOCAL_NDK_STL_VARIANT := system |
| 27 | endif |
| 28 | ifneq (1,$(words $(filter system stlport_static stlport_shared gnustl_static, $(LOCAL_NDK_STL_VARIANT)))) |
Ying Wang | 848020f | 2012-08-14 10:13:16 -0700 | [diff] [blame] | 29 | $(error $(LOCAL_PATH): Unknown LOCAL_NDK_STL_VARIANT $(LOCAL_NDK_STL_VARIANT)) |
Ying Wang | cce4c97 | 2011-03-03 18:53:53 -0800 | [diff] [blame] | 30 | endif |
| 31 | ifeq (system,$(LOCAL_NDK_STL_VARIANT)) |
| 32 | my_ndk_stl_include_path := $(my_ndk_source_root)/cxx-stl/system/include |
| 33 | # for "system" variant, the shared library exists in the system library and -lstdc++ is added by default. |
| 34 | else # LOCAL_NDK_STL_VARIANT is not system |
| 35 | ifneq (,$(filter stlport_%, $(LOCAL_NDK_STL_VARIANT))) |
| 36 | my_ndk_stl_include_path := $(my_ndk_source_root)/cxx-stl/stlport/stlport |
| 37 | ifeq (stlport_static,$(LOCAL_NDK_STL_VARIANT)) |
| 38 | my_ndk_stl_static_lib := $(my_ndk_source_root)/cxx-stl/stlport/libs/$(TARGET_CPU_ABI)/libstlport_static.a |
| 39 | else |
| 40 | my_ndk_stl_shared_lib_fullpath := $(my_ndk_source_root)/cxx-stl/stlport/libs/$(TARGET_CPU_ABI)/libstlport_shared.so |
| 41 | my_ndk_stl_shared_lib := -lstlport_shared |
| 42 | endif |
| 43 | else |
| 44 | # LOCAL_NDK_STL_VARIANT is gnustl_static |
Ying Wang | d9020c2 | 2011-09-07 14:31:47 -0700 | [diff] [blame] | 45 | my_ndk_stl_include_path := $(my_ndk_source_root)/cxx-stl/gnu-libstdc++/libs/$(TARGET_CPU_ABI)/include \ |
| 46 | $(my_ndk_source_root)/cxx-stl/gnu-libstdc++/include |
Ying Wang | 848020f | 2012-08-14 10:13:16 -0700 | [diff] [blame] | 47 | my_ndk_stl_static_lib := $(my_ndk_source_root)/cxx-stl/gnu-libstdc++/libs/$(TARGET_CPU_ABI)/libgnustl_static.a |
Ying Wang | cce4c97 | 2011-03-03 18:53:53 -0800 | [diff] [blame] | 48 | endif |
| 49 | endif |
Ying Wang | 1a08100 | 2010-07-13 14:55:47 -0700 | [diff] [blame] | 50 | endif |
| 51 | |
Ying Wang | 704c0c9 | 2011-09-15 13:50:52 -0700 | [diff] [blame] | 52 | ################################################## |
| 53 | # Compute the dependency of the shared libraries |
| 54 | ################################################## |
| 55 | # On the target, we compile with -nostdlib, so we must add in the |
| 56 | # default system shared libraries, unless they have requested not |
| 57 | # to by supplying a LOCAL_SYSTEM_SHARED_LIBRARIES value. One would |
| 58 | # supply that, for example, when building libc itself. |
| 59 | ifdef LOCAL_IS_HOST_MODULE |
| 60 | ifeq ($(LOCAL_SYSTEM_SHARED_LIBRARIES),none) |
| 61 | LOCAL_SYSTEM_SHARED_LIBRARIES := |
| 62 | endif |
| 63 | else |
| 64 | ifeq ($(LOCAL_SYSTEM_SHARED_LIBRARIES),none) |
| 65 | LOCAL_SYSTEM_SHARED_LIBRARIES := $(TARGET_DEFAULT_SYSTEM_SHARED_LIBRARIES) |
| 66 | endif |
| 67 | endif |
| 68 | |
| 69 | # Logging used to be part of libcutils (target) and libutils (sim); |
| 70 | # hack modules that use those other libs to also include liblog. |
| 71 | # All of this complexity is to make sure that liblog only appears |
| 72 | # once, and appears just before libcutils or libutils on the link |
| 73 | # line. |
| 74 | # TODO: remove this hack and change all modules to use liblog |
| 75 | # when necessary. |
| 76 | define insert-liblog |
| 77 | $(if $(filter liblog,$(1)),$(1), \ |
| 78 | $(if $(filter libcutils,$(1)), \ |
| 79 | $(patsubst libcutils,liblog libcutils,$(1)) \ |
| 80 | , \ |
| 81 | $(patsubst libutils,liblog libutils,$(1)) \ |
| 82 | ) \ |
| 83 | ) |
| 84 | endef |
| 85 | ifneq (,$(filter libcutils libutils,$(LOCAL_SHARED_LIBRARIES))) |
| 86 | LOCAL_SHARED_LIBRARIES := $(call insert-liblog,$(LOCAL_SHARED_LIBRARIES)) |
| 87 | endif |
| 88 | ifneq (,$(filter libcutils libutils,$(LOCAL_STATIC_LIBRARIES))) |
| 89 | LOCAL_STATIC_LIBRARIES := $(call insert-liblog,$(LOCAL_STATIC_LIBRARIES)) |
| 90 | endif |
| 91 | ifneq (,$(filter libcutils libutils,$(LOCAL_WHOLE_STATIC_LIBRARIES))) |
| 92 | LOCAL_WHOLE_STATIC_LIBRARIES := $(call insert-liblog,$(LOCAL_WHOLE_STATIC_LIBRARIES)) |
| 93 | endif |
| 94 | |
Ying Wang | 848020f | 2012-08-14 10:13:16 -0700 | [diff] [blame] | 95 | ifdef LOCAL_SDK_VERSION |
Ying Wang | 704c0c9 | 2011-09-15 13:50:52 -0700 | [diff] [blame] | 96 | # Get the list of INSTALLED libraries as module names. |
Ian Rogers | 76a6dc3 | 2012-10-01 16:36:23 -0700 | [diff] [blame] | 97 | # We cannot compute the full path of the LOCAL_SHARED_LIBRARIES for |
Ying Wang | 704c0c9 | 2011-09-15 13:50:52 -0700 | [diff] [blame] | 98 | # they may cusomize their install path with LOCAL_MODULE_PATH |
| 99 | installed_shared_library_module_names := \ |
| 100 | $(LOCAL_SHARED_LIBRARIES) |
| 101 | else |
| 102 | installed_shared_library_module_names := \ |
| 103 | $(LOCAL_SYSTEM_SHARED_LIBRARIES) $(LOCAL_SHARED_LIBRARIES) |
| 104 | endif |
| 105 | # The real dependency will be added after all Android.mks are loaded and the install paths |
| 106 | # of the shared libraries are determined. |
| 107 | LOCAL_REQUIRED_MODULES += $(installed_shared_library_module_names) |
| 108 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 109 | ####################################### |
| 110 | include $(BUILD_SYSTEM)/base_rules.mk |
| 111 | ####################################### |
Evgeniy Stepanov | 6cc9c06 | 2012-03-30 12:15:12 +0400 | [diff] [blame] | 112 | |
| 113 | ifeq ($(strip $(LOCAL_ADDRESS_SANITIZER)),true) |
| 114 | LOCAL_CLANG := true |
| 115 | LOCAL_CFLAGS += $(ADDRESS_SANITIZER_CONFIG_EXTRA_CFLAGS) |
| 116 | LOCAL_LDFLAGS += $(ADDRESS_SANITIZER_CONFIG_EXTRA_LDFLAGS) |
| 117 | LOCAL_SHARED_LIBRARIES += $(ADDRESS_SANITIZER_CONFIG_EXTRA_SHARED_LIBRARIES) |
| 118 | LOCAL_STATIC_LIBRARIES += $(ADDRESS_SANITIZER_CONFIG_EXTRA_STATIC_LIBRARIES) |
| 119 | endif |
| 120 | |
Stephen Hines | bec4a4b | 2012-06-26 16:38:21 -0700 | [diff] [blame] | 121 | # Add in libcompiler-rt for all regular device builds |
Mike Lockwood | daf5e22 | 2012-10-18 10:17:47 -0700 | [diff] [blame] | 122 | ifeq (,$(LOCAL_SDK_VERSION)$(LOCAL_IS_HOST_MODULE)$(WITHOUT_LIBCOMPILER_RT)) |
Stephen Hines | c72f396 | 2012-06-11 14:53:34 -0700 | [diff] [blame] | 123 | LOCAL_STATIC_LIBRARIES += $(COMPILER_RT_CONFIG_EXTRA_STATIC_LIBRARIES) |
| 124 | endif |
| 125 | |
Ying Wang | dfbe79b | 2012-03-22 11:26:22 -0700 | [diff] [blame] | 126 | my_compiler_dependencies := |
Evgeniy Stepanov | b71e2df | 2012-03-20 18:00:16 +0400 | [diff] [blame] | 127 | ifeq ($(strip $(LOCAL_CLANG)),true) |
| 128 | LOCAL_CFLAGS += $(CLANG_CONFIG_EXTRA_CFLAGS) |
Ying Wang | 65d7852 | 2012-08-10 16:30:42 -0700 | [diff] [blame] | 129 | LOCAL_ASFLAGS += $(CLANG_CONFIG_EXTRA_ASFLAGS) |
Evgeniy Stepanov | b71e2df | 2012-03-20 18:00:16 +0400 | [diff] [blame] | 130 | LOCAL_LDFLAGS += $(CLANG_CONFIG_EXTRA_LDFLAGS) |
Ying Wang | dfbe79b | 2012-03-22 11:26:22 -0700 | [diff] [blame] | 131 | my_compiler_dependencies := $(CLANG) $(CLANG_CXX) |
Evgeniy Stepanov | b71e2df | 2012-03-20 18:00:16 +0400 | [diff] [blame] | 132 | endif |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 133 | |
Jing Yu | 2dcc806 | 2009-09-21 16:31:50 -0700 | [diff] [blame] | 134 | #################################################### |
| 135 | ## Add FDO flags if FDO is turned on and supported |
| 136 | #################################################### |
| 137 | ifeq ($(strip $(LOCAL_NO_FDO_SUPPORT)),) |
| 138 | LOCAL_CFLAGS += $(TARGET_FDO_CFLAGS) |
| 139 | LOCAL_CPPFLAGS += $(TARGET_FDO_CFLAGS) |
| 140 | LOCAL_LDFLAGS += $(TARGET_FDO_CFLAGS) |
| 141 | endif |
| 142 | |
Kito Cheng | 70dc3e1 | 2012-06-15 15:15:50 +0800 | [diff] [blame] | 143 | #################################################### |
| 144 | ## Add profiling flags if aprof is turned on |
| 145 | #################################################### |
| 146 | ifeq ($(strip $(LOCAL_ENABLE_APROF)),true) |
| 147 | # -ffunction-sections and -fomit-frame-pointer are conflict with -pg |
| 148 | LOCAL_CFLAGS += -fno-omit-frame-pointer -fno-function-sections -pg |
| 149 | LOCAL_CPPFLAGS += -fno-omit-frame-pointer -fno-function-sections -pg |
| 150 | endif |
| 151 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 152 | ########################################################### |
Jim Huang | 20d1ba6 | 2010-10-14 16:15:56 +0800 | [diff] [blame] | 153 | ## Explicitly declare assembly-only __ASSEMBLY__ macro for |
| 154 | ## assembly source |
| 155 | ########################################################### |
| 156 | LOCAL_ASFLAGS += -D__ASSEMBLY__ |
| 157 | |
| 158 | ########################################################### |
Ying Wang | 1a08100 | 2010-07-13 14:55:47 -0700 | [diff] [blame] | 159 | ## Define PRIVATE_ variables from global vars |
| 160 | ########################################################### |
Ying Wang | 848020f | 2012-08-14 10:13:16 -0700 | [diff] [blame] | 161 | ifdef LOCAL_SDK_VERSION |
Ying Wang | 1a08100 | 2010-07-13 14:55:47 -0700 | [diff] [blame] | 162 | my_target_project_includes := |
Evgeniy Stepanov | a7095e9 | 2012-03-30 12:18:52 +0400 | [diff] [blame] | 163 | my_target_c_includes := $(my_ndk_stl_include_path) $(my_ndk_version_root)/usr/include |
Ying Wang | da4bf42 | 2012-08-16 16:45:01 -0700 | [diff] [blame] | 164 | |
| 165 | # filter out including of AndroidConfig.h in system/core. |
| 166 | TARGET_GLOBAL_CFLAGS_NO_ANDCONF ?= $(subst $(TARGET_ANDROID_CONFIG_CFLAGS),,\ |
| 167 | $(TARGET_GLOBAL_CFLAGS)) |
| 168 | my_target_global_cflags := $(TARGET_GLOBAL_CFLAGS_NO_ANDCONF) |
Ying Wang | 1a08100 | 2010-07-13 14:55:47 -0700 | [diff] [blame] | 169 | else |
| 170 | my_target_project_includes := $(TARGET_PROJECT_INCLUDES) |
Evgeniy Stepanov | a7095e9 | 2012-03-30 12:18:52 +0400 | [diff] [blame] | 171 | my_target_c_includes := $(TARGET_C_INCLUDES) |
Evgeniy Stepanov | a7095e9 | 2012-03-30 12:18:52 +0400 | [diff] [blame] | 172 | ifeq ($(strip $(LOCAL_CLANG)),true) |
Ying Wang | da4bf42 | 2012-08-16 16:45:01 -0700 | [diff] [blame] | 173 | my_target_c_includes += $(CLANG_CONFIG_EXTRA_TARGET_C_INCLUDES) |
| 174 | my_target_global_cflags := $(TARGET_GLOBAL_CLANG_FLAGS) |
| 175 | else |
| 176 | my_target_global_cflags := $(TARGET_GLOBAL_CFLAGS) |
| 177 | endif # LOCAL_CLANG |
| 178 | endif # LOCAL_SDK_VERSION |
| 179 | |
Ying Wang | 1a08100 | 2010-07-13 14:55:47 -0700 | [diff] [blame] | 180 | $(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_TARGET_PROJECT_INCLUDES := $(my_target_project_includes) |
Evgeniy Stepanov | a7095e9 | 2012-03-30 12:18:52 +0400 | [diff] [blame] | 181 | $(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_TARGET_C_INCLUDES := $(my_target_c_includes) |
Ying Wang | 1a08100 | 2010-07-13 14:55:47 -0700 | [diff] [blame] | 182 | $(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_TARGET_GLOBAL_CFLAGS := $(my_target_global_cflags) |
Ying Wang | da4bf42 | 2012-08-16 16:45:01 -0700 | [diff] [blame] | 183 | $(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_TARGET_GLOBAL_CPPFLAGS := $(TARGET_GLOBAL_CPPFLAGS) |
Ying Wang | 1a08100 | 2010-07-13 14:55:47 -0700 | [diff] [blame] | 184 | |
| 185 | ########################################################### |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 186 | ## Define PRIVATE_ variables used by multiple module types |
| 187 | ########################################################### |
| 188 | $(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_NO_DEFAULT_COMPILER_FLAGS := \ |
Ying Wang | dfbe79b | 2012-03-22 11:26:22 -0700 | [diff] [blame] | 189 | $(strip $(LOCAL_NO_DEFAULT_COMPILER_FLAGS)) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 190 | |
| 191 | ifeq ($(strip $(LOCAL_CC)),) |
Evgeniy Stepanov | b71e2df | 2012-03-20 18:00:16 +0400 | [diff] [blame] | 192 | ifeq ($(strip $(LOCAL_CLANG)),true) |
| 193 | LOCAL_CC := $(CLANG) |
| 194 | else |
| 195 | LOCAL_CC := $($(my_prefix)CC) |
| 196 | endif |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 197 | endif |
| 198 | $(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_CC := $(LOCAL_CC) |
| 199 | |
| 200 | ifeq ($(strip $(LOCAL_CXX)),) |
Evgeniy Stepanov | b71e2df | 2012-03-20 18:00:16 +0400 | [diff] [blame] | 201 | ifeq ($(strip $(LOCAL_CLANG)),true) |
| 202 | LOCAL_CXX := $(CLANG_CXX) |
| 203 | else |
| 204 | LOCAL_CXX := $($(my_prefix)CXX) |
| 205 | endif |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 206 | endif |
| 207 | $(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_CXX := $(LOCAL_CXX) |
| 208 | |
| 209 | # TODO: support a mix of standard extensions so that this isn't necessary |
| 210 | LOCAL_CPP_EXTENSION := $(strip $(LOCAL_CPP_EXTENSION)) |
| 211 | ifeq ($(LOCAL_CPP_EXTENSION),) |
| 212 | LOCAL_CPP_EXTENSION := .cpp |
| 213 | endif |
| 214 | $(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_CPP_EXTENSION := $(LOCAL_CPP_EXTENSION) |
| 215 | |
| 216 | # Certain modules like libdl have to have symbols resolved at runtime and blow |
| 217 | # up if --no-undefined is passed to the linker. |
| 218 | ifeq ($(strip $(LOCAL_NO_DEFAULT_COMPILER_FLAGS)),) |
| 219 | ifeq ($(strip $(LOCAL_ALLOW_UNDEFINED_SYMBOLS)),) |
| 220 | LOCAL_LDFLAGS := $(LOCAL_LDFLAGS) $($(my_prefix)NO_UNDEFINED_LDFLAGS) |
| 221 | endif |
| 222 | endif |
| 223 | |
Ying Wang | fcdabd4 | 2011-04-25 14:22:41 -0700 | [diff] [blame] | 224 | ifeq (true,$(LOCAL_GROUP_STATIC_LIBRARIES)) |
| 225 | $(LOCAL_BUILT_MODULE): PRIVATE_GROUP_STATIC_LIBRARIES := true |
| 226 | else |
| 227 | $(LOCAL_BUILT_MODULE): PRIVATE_GROUP_STATIC_LIBRARIES := |
| 228 | endif |
| 229 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 230 | ########################################################### |
| 231 | ## Define arm-vs-thumb-mode flags. |
| 232 | ########################################################### |
| 233 | LOCAL_ARM_MODE := $(strip $(LOCAL_ARM_MODE)) |
Chih-Wei Huang | 0d09e58 | 2010-07-09 10:07:52 +0800 | [diff] [blame] | 234 | ifeq ($(TARGET_ARCH),arm) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 235 | arm_objects_mode := $(if $(LOCAL_ARM_MODE),$(LOCAL_ARM_MODE),arm) |
| 236 | normal_objects_mode := $(if $(LOCAL_ARM_MODE),$(LOCAL_ARM_MODE),thumb) |
| 237 | |
Dave Bort | 9528248 | 2009-04-23 18:44:55 -0700 | [diff] [blame] | 238 | # Read the values from something like TARGET_arm_CFLAGS or |
| 239 | # TARGET_thumb_CFLAGS. HOST_(arm|thumb)_CFLAGS values aren't |
| 240 | # actually used (although they are usually empty). |
Evgeniy Stepanov | f50f4c5 | 2012-04-05 11:44:37 +0400 | [diff] [blame] | 241 | ifeq ($(strip $(LOCAL_CLANG)),true) |
| 242 | arm_objects_cflags := $($(my_prefix)$(arm_objects_mode)_CLANG_CFLAGS) |
| 243 | normal_objects_cflags := $($(my_prefix)$(normal_objects_mode)_CLANG_CFLAGS) |
| 244 | else |
Dave Bort | 9528248 | 2009-04-23 18:44:55 -0700 | [diff] [blame] | 245 | arm_objects_cflags := $($(my_prefix)$(arm_objects_mode)_CFLAGS) |
| 246 | normal_objects_cflags := $($(my_prefix)$(normal_objects_mode)_CFLAGS) |
Evgeniy Stepanov | f50f4c5 | 2012-04-05 11:44:37 +0400 | [diff] [blame] | 247 | endif |
| 248 | |
Chih-Wei Huang | 0d09e58 | 2010-07-09 10:07:52 +0800 | [diff] [blame] | 249 | else |
| 250 | arm_objects_mode := |
| 251 | normal_objects_mode := |
| 252 | arm_objects_cflags := |
| 253 | normal_objects_cflags := |
| 254 | endif |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 255 | |
| 256 | ########################################################### |
| 257 | ## Define per-module debugging flags. Users can turn on |
| 258 | ## debugging for a particular module by setting DEBUG_MODULE_ModuleName |
| 259 | ## to a non-empty value in their environment or buildspec.mk, |
| 260 | ## and setting HOST_/TARGET_CUSTOM_DEBUG_CFLAGS to the |
| 261 | ## debug flags that they want to use. |
| 262 | ########################################################### |
| 263 | ifdef DEBUG_MODULE_$(strip $(LOCAL_MODULE)) |
| 264 | debug_cflags := $($(my_prefix)CUSTOM_DEBUG_CFLAGS) |
| 265 | else |
| 266 | debug_cflags := |
| 267 | endif |
| 268 | |
| 269 | ########################################################### |
| 270 | ## Stuff source generated from one-off tools |
| 271 | ########################################################### |
| 272 | $(LOCAL_GENERATED_SOURCES): PRIVATE_MODULE := $(LOCAL_MODULE) |
| 273 | |
| 274 | ALL_GENERATED_SOURCES += $(LOCAL_GENERATED_SOURCES) |
| 275 | |
| 276 | |
| 277 | ########################################################### |
Ying Wang | a5fc87a | 2010-11-02 18:43:16 -0700 | [diff] [blame] | 278 | ## Compile the .proto files to .cc and then to .o |
| 279 | ########################################################### |
| 280 | proto_sources := $(filter %.proto,$(LOCAL_SRC_FILES)) |
| 281 | proto_generated_objects := |
| 282 | proto_generated_headers := |
| 283 | ifneq ($(proto_sources),) |
| 284 | proto_sources_fullpath := $(addprefix $(LOCAL_PATH)/, $(proto_sources)) |
| 285 | proto_generated_cc_sources_dir := $(intermediates)/proto |
| 286 | proto_generated_cc_sources := $(addprefix $(proto_generated_cc_sources_dir)/, \ |
Ying Wang | dfbe79b | 2012-03-22 11:26:22 -0700 | [diff] [blame] | 287 | $(patsubst %.proto,%.pb.cc,$(proto_sources_fullpath))) |
Ying Wang | a5fc87a | 2010-11-02 18:43:16 -0700 | [diff] [blame] | 288 | proto_generated_objects := $(patsubst %.cc,%.o, $(proto_generated_cc_sources)) |
| 289 | |
| 290 | $(proto_generated_cc_sources): PRIVATE_PROTO_INCLUDES := $(TOP) |
| 291 | $(proto_generated_cc_sources): PRIVATE_PROTO_CC_OUTPUT_DIR := $(proto_generated_cc_sources_dir) |
Ying Wang | 33c0d95 | 2010-11-05 11:30:58 -0700 | [diff] [blame] | 292 | $(proto_generated_cc_sources): PRIVATE_PROTOC_FLAGS := $(LOCAL_PROTOC_FLAGS) |
Ying Wang | a5fc87a | 2010-11-02 18:43:16 -0700 | [diff] [blame] | 293 | $(proto_generated_cc_sources): $(proto_generated_cc_sources_dir)/%.pb.cc: %.proto $(PROTOC) |
| 294 | $(transform-proto-to-cc) |
| 295 | |
| 296 | proto_generated_headers := $(patsubst %.pb.cc,%.pb.h, $(proto_generated_cc_sources)) |
| 297 | $(proto_generated_headers): $(proto_generated_cc_sources_dir)/%.pb.h: $(proto_generated_cc_sources_dir)/%.pb.cc |
| 298 | |
Ying Wang | 022a7b3 | 2012-06-13 11:38:10 -0700 | [diff] [blame] | 299 | $(proto_generated_objects): PRIVATE_ARM_MODE := $(normal_objects_mode) |
| 300 | $(proto_generated_objects): PRIVATE_ARM_CFLAGS := $(normal_objects_cflags) |
Narayan Kamath | 2109487 | 2012-04-02 18:19:31 +0100 | [diff] [blame] | 301 | $(proto_generated_objects): $(proto_generated_cc_sources_dir)/%.o: $(proto_generated_cc_sources_dir)/%.cc $(proto_generated_headers) |
Ying Wang | a5fc87a | 2010-11-02 18:43:16 -0700 | [diff] [blame] | 302 | $(transform-$(PRIVATE_HOST)cpp-to-o) |
| 303 | -include $(proto_generated_objects:%.o=%.P) |
| 304 | |
| 305 | LOCAL_C_INCLUDES += external/protobuf/src $(proto_generated_cc_sources_dir) |
| 306 | LOCAL_CFLAGS += -DGOOGLE_PROTOBUF_NO_RTTI |
| 307 | ifeq ($(LOCAL_PROTOC_OPTIMIZE_TYPE),full) |
| 308 | LOCAL_STATIC_LIBRARIES += libprotobuf-cpp-2.3.0-full |
| 309 | else |
| 310 | LOCAL_STATIC_LIBRARIES += libprotobuf-cpp-2.3.0-lite |
| 311 | endif |
| 312 | endif |
| 313 | |
| 314 | |
| 315 | ########################################################### |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 316 | ## YACC: Compile .y files to .cpp and the to .o. |
| 317 | ########################################################### |
| 318 | |
| 319 | yacc_sources := $(filter %.y,$(LOCAL_SRC_FILES)) |
| 320 | yacc_cpps := $(addprefix \ |
Ying Wang | dfbe79b | 2012-03-22 11:26:22 -0700 | [diff] [blame] | 321 | $(intermediates)/,$(yacc_sources:.y=$(LOCAL_CPP_EXTENSION))) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 322 | yacc_headers := $(yacc_cpps:$(LOCAL_CPP_EXTENSION)=.h) |
| 323 | yacc_objects := $(yacc_cpps:$(LOCAL_CPP_EXTENSION)=.o) |
| 324 | |
| 325 | ifneq ($(strip $(yacc_cpps)),) |
| 326 | $(yacc_cpps): $(intermediates)/%$(LOCAL_CPP_EXTENSION): \ |
Ying Wang | dfbe79b | 2012-03-22 11:26:22 -0700 | [diff] [blame] | 327 | $(TOPDIR)$(LOCAL_PATH)/%.y \ |
| 328 | $(lex_cpps) $(LOCAL_ADDITIONAL_DEPENDENCIES) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 329 | $(call transform-y-to-cpp,$(PRIVATE_CPP_EXTENSION)) |
| 330 | $(yacc_headers): $(intermediates)/%.h: $(intermediates)/%$(LOCAL_CPP_EXTENSION) |
| 331 | |
| 332 | $(yacc_objects): PRIVATE_ARM_MODE := $(normal_objects_mode) |
| 333 | $(yacc_objects): PRIVATE_ARM_CFLAGS := $(normal_objects_cflags) |
| 334 | $(yacc_objects): $(intermediates)/%.o: $(intermediates)/%$(LOCAL_CPP_EXTENSION) |
| 335 | $(transform-$(PRIVATE_HOST)cpp-to-o) |
| 336 | endif |
| 337 | |
| 338 | ########################################################### |
| 339 | ## LEX: Compile .l files to .cpp and then to .o. |
| 340 | ########################################################### |
| 341 | |
| 342 | lex_sources := $(filter %.l,$(LOCAL_SRC_FILES)) |
| 343 | lex_cpps := $(addprefix \ |
Ying Wang | dfbe79b | 2012-03-22 11:26:22 -0700 | [diff] [blame] | 344 | $(intermediates)/,$(lex_sources:.l=$(LOCAL_CPP_EXTENSION))) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 345 | lex_objects := $(lex_cpps:$(LOCAL_CPP_EXTENSION)=.o) |
| 346 | |
| 347 | ifneq ($(strip $(lex_cpps)),) |
| 348 | $(lex_cpps): $(intermediates)/%$(LOCAL_CPP_EXTENSION): \ |
Ying Wang | dfbe79b | 2012-03-22 11:26:22 -0700 | [diff] [blame] | 349 | $(TOPDIR)$(LOCAL_PATH)/%.l |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 350 | $(transform-l-to-cpp) |
| 351 | |
| 352 | $(lex_objects): PRIVATE_ARM_MODE := $(normal_objects_mode) |
| 353 | $(lex_objects): PRIVATE_ARM_CFLAGS := $(normal_objects_cflags) |
| 354 | $(lex_objects): $(intermediates)/%.o: \ |
Ying Wang | dfbe79b | 2012-03-22 11:26:22 -0700 | [diff] [blame] | 355 | $(intermediates)/%$(LOCAL_CPP_EXTENSION) \ |
| 356 | $(LOCAL_ADDITIONAL_DEPENDENCIES) \ |
| 357 | $(yacc_headers) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 358 | $(transform-$(PRIVATE_HOST)cpp-to-o) |
| 359 | endif |
| 360 | |
| 361 | ########################################################### |
| 362 | ## C++: Compile .cpp files to .o. |
| 363 | ########################################################### |
| 364 | |
Jeff Brown | e33ba4c | 2011-07-11 22:11:46 -0700 | [diff] [blame] | 365 | # we also do this on host modules, even though |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 366 | # it's not really arm, because there are files that are shared. |
| 367 | cpp_arm_sources := $(patsubst %$(LOCAL_CPP_EXTENSION).arm,%$(LOCAL_CPP_EXTENSION),$(filter %$(LOCAL_CPP_EXTENSION).arm,$(LOCAL_SRC_FILES))) |
| 368 | cpp_arm_objects := $(addprefix $(intermediates)/,$(cpp_arm_sources:$(LOCAL_CPP_EXTENSION)=.o)) |
| 369 | |
| 370 | cpp_normal_sources := $(filter %$(LOCAL_CPP_EXTENSION),$(LOCAL_SRC_FILES)) |
| 371 | cpp_normal_objects := $(addprefix $(intermediates)/,$(cpp_normal_sources:$(LOCAL_CPP_EXTENSION)=.o)) |
| 372 | |
| 373 | $(cpp_arm_objects): PRIVATE_ARM_MODE := $(arm_objects_mode) |
| 374 | $(cpp_arm_objects): PRIVATE_ARM_CFLAGS := $(arm_objects_cflags) |
| 375 | $(cpp_normal_objects): PRIVATE_ARM_MODE := $(normal_objects_mode) |
| 376 | $(cpp_normal_objects): PRIVATE_ARM_CFLAGS := $(normal_objects_cflags) |
| 377 | |
| 378 | cpp_objects := $(cpp_arm_objects) $(cpp_normal_objects) |
| 379 | |
| 380 | ifneq ($(strip $(cpp_objects)),) |
| 381 | $(cpp_objects): $(intermediates)/%.o: \ |
Ying Wang | dfbe79b | 2012-03-22 11:26:22 -0700 | [diff] [blame] | 382 | $(TOPDIR)$(LOCAL_PATH)/%$(LOCAL_CPP_EXTENSION) \ |
| 383 | $(yacc_cpps) $(proto_generated_headers) $(my_compiler_dependencies) \ |
Evgeniy Stepanov | b71e2df | 2012-03-20 18:00:16 +0400 | [diff] [blame] | 384 | $(LOCAL_ADDITIONAL_DEPENDENCIES) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 385 | $(transform-$(PRIVATE_HOST)cpp-to-o) |
| 386 | -include $(cpp_objects:%.o=%.P) |
| 387 | endif |
| 388 | |
| 389 | ########################################################### |
| 390 | ## C++: Compile generated .cpp files to .o. |
| 391 | ########################################################### |
| 392 | |
| 393 | gen_cpp_sources := $(filter %$(LOCAL_CPP_EXTENSION),$(LOCAL_GENERATED_SOURCES)) |
| 394 | gen_cpp_objects := $(gen_cpp_sources:%$(LOCAL_CPP_EXTENSION)=%.o) |
| 395 | |
| 396 | ifneq ($(strip $(gen_cpp_objects)),) |
| 397 | # Compile all generated files as thumb. |
| 398 | # TODO: support compiling certain generated files as arm. |
| 399 | $(gen_cpp_objects): PRIVATE_ARM_MODE := $(normal_objects_mode) |
| 400 | $(gen_cpp_objects): PRIVATE_ARM_CFLAGS := $(normal_objects_cflags) |
Evgeniy Stepanov | b71e2df | 2012-03-20 18:00:16 +0400 | [diff] [blame] | 401 | $(gen_cpp_objects): $(intermediates)/%.o: \ |
| 402 | $(intermediates)/%$(LOCAL_CPP_EXTENSION) $(yacc_cpps) \ |
Ying Wang | dfbe79b | 2012-03-22 11:26:22 -0700 | [diff] [blame] | 403 | $(proto_generated_headers) $(my_compiler_dependencies) \ |
Evgeniy Stepanov | b71e2df | 2012-03-20 18:00:16 +0400 | [diff] [blame] | 404 | $(LOCAL_ADDITIONAL_DEPENDENCIES) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 405 | $(transform-$(PRIVATE_HOST)cpp-to-o) |
| 406 | -include $(gen_cpp_objects:%.o=%.P) |
| 407 | endif |
| 408 | |
| 409 | ########################################################### |
| 410 | ## S: Compile generated .S and .s files to .o. |
| 411 | ########################################################### |
| 412 | |
| 413 | gen_S_sources := $(filter %.S,$(LOCAL_GENERATED_SOURCES)) |
| 414 | gen_S_objects := $(gen_S_sources:%.S=%.o) |
| 415 | |
| 416 | ifneq ($(strip $(gen_S_sources)),) |
Evgeniy Stepanov | b71e2df | 2012-03-20 18:00:16 +0400 | [diff] [blame] | 417 | $(gen_S_objects): $(intermediates)/%.o: $(intermediates)/%.S \ |
Ying Wang | dfbe79b | 2012-03-22 11:26:22 -0700 | [diff] [blame] | 418 | $(my_compiler_dependencies) $(LOCAL_ADDITIONAL_DEPENDENCIES) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 419 | $(transform-$(PRIVATE_HOST)s-to-o) |
| 420 | -include $(gen_S_objects:%.o=%.P) |
| 421 | endif |
| 422 | |
| 423 | gen_s_sources := $(filter %.s,$(LOCAL_GENERATED_SOURCES)) |
| 424 | gen_s_objects := $(gen_s_sources:%.s=%.o) |
| 425 | |
| 426 | ifneq ($(strip $(gen_s_objects)),) |
Evgeniy Stepanov | b71e2df | 2012-03-20 18:00:16 +0400 | [diff] [blame] | 427 | $(gen_s_objects): $(intermediates)/%.o: $(intermediates)/%.s \ |
Ying Wang | dfbe79b | 2012-03-22 11:26:22 -0700 | [diff] [blame] | 428 | $(my_compiler_dependencies) $(LOCAL_ADDITIONAL_DEPENDENCIES) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 429 | $(transform-$(PRIVATE_HOST)s-to-o-no-deps) |
| 430 | -include $(gen_s_objects:%.o=%.P) |
| 431 | endif |
| 432 | |
| 433 | gen_asm_objects := $(gen_S_objects) $(gen_s_objects) |
| 434 | |
| 435 | ########################################################### |
| 436 | ## C: Compile .c files to .o. |
| 437 | ########################################################### |
| 438 | |
| 439 | c_arm_sources := $(patsubst %.c.arm,%.c,$(filter %.c.arm,$(LOCAL_SRC_FILES))) |
| 440 | c_arm_objects := $(addprefix $(intermediates)/,$(c_arm_sources:.c=.o)) |
| 441 | |
| 442 | c_normal_sources := $(filter %.c,$(LOCAL_SRC_FILES)) |
| 443 | c_normal_objects := $(addprefix $(intermediates)/,$(c_normal_sources:.c=.o)) |
| 444 | |
| 445 | $(c_arm_objects): PRIVATE_ARM_MODE := $(arm_objects_mode) |
| 446 | $(c_arm_objects): PRIVATE_ARM_CFLAGS := $(arm_objects_cflags) |
| 447 | $(c_normal_objects): PRIVATE_ARM_MODE := $(normal_objects_mode) |
| 448 | $(c_normal_objects): PRIVATE_ARM_CFLAGS := $(normal_objects_cflags) |
| 449 | |
| 450 | c_objects := $(c_arm_objects) $(c_normal_objects) |
| 451 | |
| 452 | ifneq ($(strip $(c_objects)),) |
Evgeniy Stepanov | b71e2df | 2012-03-20 18:00:16 +0400 | [diff] [blame] | 453 | $(c_objects): $(intermediates)/%.o: $(TOPDIR)$(LOCAL_PATH)/%.c $(yacc_cpps) $(proto_generated_headers) \ |
Ying Wang | dfbe79b | 2012-03-22 11:26:22 -0700 | [diff] [blame] | 454 | $(my_compiler_dependencies) $(LOCAL_ADDITIONAL_DEPENDENCIES) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 455 | $(transform-$(PRIVATE_HOST)c-to-o) |
| 456 | -include $(c_objects:%.o=%.P) |
| 457 | endif |
| 458 | |
| 459 | ########################################################### |
Jack Palevich | e7b3e2c | 2009-05-04 14:32:44 -0700 | [diff] [blame] | 460 | ## C: Compile generated .c files to .o. |
| 461 | ########################################################### |
| 462 | |
| 463 | gen_c_sources := $(filter %.c,$(LOCAL_GENERATED_SOURCES)) |
| 464 | gen_c_objects := $(gen_c_sources:%.c=%.o) |
| 465 | |
| 466 | ifneq ($(strip $(gen_c_objects)),) |
| 467 | # Compile all generated files as thumb. |
| 468 | # TODO: support compiling certain generated files as arm. |
| 469 | $(gen_c_objects): PRIVATE_ARM_MODE := $(normal_objects_mode) |
| 470 | $(gen_c_objects): PRIVATE_ARM_CFLAGS := $(normal_objects_cflags) |
Evgeniy Stepanov | b71e2df | 2012-03-20 18:00:16 +0400 | [diff] [blame] | 471 | $(gen_c_objects): $(intermediates)/%.o: $(intermediates)/%.c $(yacc_cpps) $(proto_generated_headers) \ |
Ying Wang | dfbe79b | 2012-03-22 11:26:22 -0700 | [diff] [blame] | 472 | $(my_compiler_dependencies) $(LOCAL_ADDITIONAL_DEPENDENCIES) |
Jack Palevich | e7b3e2c | 2009-05-04 14:32:44 -0700 | [diff] [blame] | 473 | $(transform-$(PRIVATE_HOST)c-to-o) |
| 474 | -include $(gen_c_objects:%.o=%.P) |
| 475 | endif |
| 476 | |
| 477 | ########################################################### |
David 'Digit' Turner | 5dbb529 | 2009-05-14 16:00:09 +0200 | [diff] [blame] | 478 | ## ObjC: Compile .m files to .o |
| 479 | ########################################################### |
| 480 | |
| 481 | objc_sources := $(filter %.m,$(LOCAL_SRC_FILES)) |
| 482 | objc_objects := $(addprefix $(intermediates)/,$(objc_sources:.m=.o)) |
| 483 | |
| 484 | ifneq ($(strip $(objc_objects)),) |
Evgeniy Stepanov | b71e2df | 2012-03-20 18:00:16 +0400 | [diff] [blame] | 485 | $(objc_objects): $(intermediates)/%.o: $(TOPDIR)$(LOCAL_PATH)/%.m $(yacc_cpps) $(proto_generated_headers) \ |
Ying Wang | dfbe79b | 2012-03-22 11:26:22 -0700 | [diff] [blame] | 486 | $(my_compiler_dependencies) $(LOCAL_ADDITIONAL_DEPENDENCIES) |
David 'Digit' Turner | 5dbb529 | 2009-05-14 16:00:09 +0200 | [diff] [blame] | 487 | $(transform-$(PRIVATE_HOST)m-to-o) |
| 488 | -include $(objc_objects:%.o=%.P) |
| 489 | endif |
| 490 | |
| 491 | ########################################################### |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 492 | ## AS: Compile .S files to .o. |
| 493 | ########################################################### |
| 494 | |
| 495 | asm_sources_S := $(filter %.S,$(LOCAL_SRC_FILES)) |
| 496 | asm_objects_S := $(addprefix $(intermediates)/,$(asm_sources_S:.S=.o)) |
| 497 | |
| 498 | ifneq ($(strip $(asm_objects_S)),) |
Evgeniy Stepanov | b71e2df | 2012-03-20 18:00:16 +0400 | [diff] [blame] | 499 | $(asm_objects_S): $(intermediates)/%.o: $(TOPDIR)$(LOCAL_PATH)/%.S \ |
Ying Wang | dfbe79b | 2012-03-22 11:26:22 -0700 | [diff] [blame] | 500 | $(my_compiler_dependencies) $(LOCAL_ADDITIONAL_DEPENDENCIES) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 501 | $(transform-$(PRIVATE_HOST)s-to-o) |
| 502 | -include $(asm_objects_S:%.o=%.P) |
| 503 | endif |
| 504 | |
| 505 | asm_sources_s := $(filter %.s,$(LOCAL_SRC_FILES)) |
| 506 | asm_objects_s := $(addprefix $(intermediates)/,$(asm_sources_s:.s=.o)) |
| 507 | |
| 508 | ifneq ($(strip $(asm_objects_s)),) |
Evgeniy Stepanov | b71e2df | 2012-03-20 18:00:16 +0400 | [diff] [blame] | 509 | $(asm_objects_s): $(intermediates)/%.o: $(TOPDIR)$(LOCAL_PATH)/%.s \ |
Ying Wang | dfbe79b | 2012-03-22 11:26:22 -0700 | [diff] [blame] | 510 | $(my_compiler_dependencies) $(LOCAL_ADDITIONAL_DEPENDENCIES) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 511 | $(transform-$(PRIVATE_HOST)s-to-o-no-deps) |
| 512 | -include $(asm_objects_s:%.o=%.P) |
| 513 | endif |
| 514 | |
| 515 | asm_objects := $(asm_objects_S) $(asm_objects_s) |
| 516 | |
| 517 | |
Ying Wang | 5f07480 | 2011-11-08 09:31:21 -0800 | [diff] [blame] | 518 | #################################################### |
| 519 | ## Import includes |
| 520 | #################################################### |
| 521 | import_includes := $(intermediates)/import_includes |
| 522 | import_includes_deps := $(strip \ |
| 523 | $(foreach l, $(installed_shared_library_module_names), \ |
| 524 | $(call intermediates-dir-for,SHARED_LIBRARIES,$(l),$(LOCAL_IS_HOST_MODULE))/export_includes) \ |
| 525 | $(foreach l, $(LOCAL_STATIC_LIBRARIES) $(LOCAL_WHOLE_STATIC_LIBRARIES), \ |
| 526 | $(call intermediates-dir-for,STATIC_LIBRARIES,$(l),$(LOCAL_IS_HOST_MODULE))/export_includes)) |
| 527 | $(import_includes) : $(import_includes_deps) |
| 528 | @echo Import includes file: $@ |
| 529 | $(hide) mkdir -p $(dir $@) && rm -f $@ |
| 530 | ifdef import_includes_deps |
| 531 | $(hide) for f in $^; do \ |
| 532 | cat $$f >> $@; \ |
| 533 | done |
| 534 | else |
| 535 | $(hide) touch $@ |
| 536 | endif |
| 537 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 538 | ########################################################### |
| 539 | ## Common object handling. |
| 540 | ########################################################### |
| 541 | |
| 542 | # some rules depend on asm_objects being first. If your code depends on |
| 543 | # being first, it's reasonable to require it to be assembly |
| 544 | all_objects := \ |
Ying Wang | dfbe79b | 2012-03-22 11:26:22 -0700 | [diff] [blame] | 545 | $(asm_objects) \ |
| 546 | $(cpp_objects) \ |
| 547 | $(gen_cpp_objects) \ |
| 548 | $(gen_asm_objects) \ |
| 549 | $(c_objects) \ |
| 550 | $(gen_c_objects) \ |
| 551 | $(objc_objects) \ |
| 552 | $(yacc_objects) \ |
| 553 | $(lex_objects) \ |
| 554 | $(proto_generated_objects) \ |
| 555 | $(addprefix $(TOPDIR)$(LOCAL_PATH)/,$(LOCAL_PREBUILT_OBJ_FILES)) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 556 | |
Colin Cross | 9ad36ef | 2012-03-30 19:31:00 -0700 | [diff] [blame] | 557 | LOCAL_C_INCLUDES += $(TOPDIR)$(LOCAL_PATH) $(intermediates) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 558 | |
Ying Wang | 848020f | 2012-08-14 10:13:16 -0700 | [diff] [blame] | 559 | ifndef LOCAL_SDK_VERSION |
Ying Wang | bce4b75 | 2010-07-22 15:51:56 -0700 | [diff] [blame] | 560 | LOCAL_C_INCLUDES += $(JNI_H_INCLUDE) |
| 561 | endif |
| 562 | |
Ying Wang | 5f07480 | 2011-11-08 09:31:21 -0800 | [diff] [blame] | 563 | $(all_objects) : | $(LOCAL_GENERATED_SOURCES) $(import_includes) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 564 | ALL_C_CPP_ETC_OBJECTS += $(all_objects) |
| 565 | |
| 566 | ########################################################### |
| 567 | ## Copy headers to the install tree |
| 568 | ########################################################### |
| 569 | include $(BUILD_COPY_HEADERS) |
| 570 | |
| 571 | ########################################################### |
| 572 | # Standard library handling. |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 573 | ########################################################### |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 574 | |
| 575 | ########################################################### |
| 576 | # The list of libraries that this module will link against are in |
| 577 | # these variables. Each is a list of bare module names like "libc libm". |
| 578 | # |
| 579 | # LOCAL_SHARED_LIBRARIES |
| 580 | # LOCAL_STATIC_LIBRARIES |
| 581 | # LOCAL_WHOLE_STATIC_LIBRARIES |
| 582 | # |
| 583 | # We need to convert the bare names into the dependencies that |
| 584 | # we'll use for LOCAL_BUILT_MODULE and LOCAL_INSTALLED_MODULE. |
| 585 | # LOCAL_BUILT_MODULE should depend on the BUILT versions of the |
| 586 | # libraries, so that simply building this module doesn't force |
| 587 | # an install of a library. Similarly, LOCAL_INSTALLED_MODULE |
| 588 | # should depend on the INSTALLED versions of the libraries so |
| 589 | # that they get installed when this module does. |
| 590 | ########################################################### |
| 591 | # NOTE: |
| 592 | # WHOLE_STATIC_LIBRARIES are libraries that are pulled into the |
| 593 | # module without leaving anything out, which is useful for turning |
| 594 | # a collection of .a files into a .so file. Linking against a |
| 595 | # normal STATIC_LIBRARY will only pull in code/symbols that are |
| 596 | # referenced by the module. (see gcc/ld's --whole-archive option) |
| 597 | ########################################################### |
| 598 | |
| 599 | # Get the list of BUILT libraries, which are under |
| 600 | # various intermediates directories. |
| 601 | so_suffix := $($(my_prefix)SHLIB_SUFFIX) |
| 602 | a_suffix := $($(my_prefix)STATIC_LIB_SUFFIX) |
| 603 | |
Ying Wang | 848020f | 2012-08-14 10:13:16 -0700 | [diff] [blame] | 604 | ifdef LOCAL_SDK_VERSION |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 605 | built_shared_libraries := \ |
| 606 | $(addprefix $($(my_prefix)OUT_INTERMEDIATE_LIBRARIES)/, \ |
| 607 | $(addsuffix $(so_suffix), \ |
| 608 | $(LOCAL_SHARED_LIBRARIES))) |
| 609 | |
Ying Wang | cce4c97 | 2011-03-03 18:53:53 -0800 | [diff] [blame] | 610 | my_system_shared_libraries_fullpath := \ |
| 611 | $(my_ndk_stl_shared_lib_fullpath) \ |
| 612 | $(addprefix $(my_ndk_version_root)/usr/lib/, \ |
| 613 | $(addsuffix $(so_suffix), $(LOCAL_SYSTEM_SHARED_LIBRARIES))) |
Ying Wang | 1a08100 | 2010-07-13 14:55:47 -0700 | [diff] [blame] | 614 | |
| 615 | built_shared_libraries += $(my_system_shared_libraries_fullpath) |
| 616 | LOCAL_SHARED_LIBRARIES += $(LOCAL_SYSTEM_SHARED_LIBRARIES) |
| 617 | else |
| 618 | LOCAL_SHARED_LIBRARIES += $(LOCAL_SYSTEM_SHARED_LIBRARIES) |
| 619 | built_shared_libraries := \ |
| 620 | $(addprefix $($(my_prefix)OUT_INTERMEDIATE_LIBRARIES)/, \ |
| 621 | $(addsuffix $(so_suffix), \ |
| 622 | $(LOCAL_SHARED_LIBRARIES))) |
Ying Wang | 1a08100 | 2010-07-13 14:55:47 -0700 | [diff] [blame] | 623 | endif |
| 624 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 625 | built_static_libraries := \ |
| 626 | $(foreach lib,$(LOCAL_STATIC_LIBRARIES), \ |
| 627 | $(call intermediates-dir-for, \ |
| 628 | STATIC_LIBRARIES,$(lib),$(LOCAL_IS_HOST_MODULE))/$(lib)$(a_suffix)) |
| 629 | |
Ying Wang | 848020f | 2012-08-14 10:13:16 -0700 | [diff] [blame] | 630 | ifdef LOCAL_SDK_VERSION |
Ying Wang | cce4c97 | 2011-03-03 18:53:53 -0800 | [diff] [blame] | 631 | built_static_libraries += $(my_ndk_stl_static_lib) |
| 632 | endif |
| 633 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 634 | built_whole_libraries := \ |
| 635 | $(foreach lib,$(LOCAL_WHOLE_STATIC_LIBRARIES), \ |
| 636 | $(call intermediates-dir-for, \ |
| 637 | STATIC_LIBRARIES,$(lib),$(LOCAL_IS_HOST_MODULE))/$(lib)$(a_suffix)) |
| 638 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 639 | # We don't care about installed static libraries, since the |
| 640 | # libraries have already been linked into the module at that point. |
| 641 | # We do, however, care about the NOTICE files for any static |
Steve Block | d14d3b4 | 2012-03-01 11:34:41 +0000 | [diff] [blame] | 642 | # libraries that we use. (see notice_files.mk) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 643 | |
| 644 | installed_static_library_notice_file_targets := \ |
| 645 | $(foreach lib,$(LOCAL_STATIC_LIBRARIES) $(LOCAL_WHOLE_STATIC_LIBRARIES), \ |
| 646 | NOTICE-$(if $(LOCAL_IS_HOST_MODULE),HOST,TARGET)-STATIC_LIBRARIES-$(lib)) |
| 647 | |
Doug Kwan | 9a8ecf9 | 2011-05-10 21:50:58 -0700 | [diff] [blame] | 648 | # Default is -fno-rtti. |
Doug Kwan | e3c3c6d | 2011-06-07 10:55:48 -0700 | [diff] [blame] | 649 | ifeq ($(strip $(LOCAL_RTTI_FLAG)),) |
| 650 | LOCAL_RTTI_FLAG := -fno-rtti |
| 651 | endif |
Doug Kwan | 9a8ecf9 | 2011-05-10 21:50:58 -0700 | [diff] [blame] | 652 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 653 | ########################################################### |
| 654 | # Rule-specific variable definitions |
| 655 | ########################################################### |
| 656 | $(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_YACCFLAGS := $(LOCAL_YACCFLAGS) |
| 657 | $(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_ASFLAGS := $(LOCAL_ASFLAGS) |
Ying Wang | 7429e21 | 2012-08-15 10:59:10 -0700 | [diff] [blame] | 658 | $(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_CONLYFLAGS := $(LOCAL_CONLYFLAGS) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 659 | $(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_CFLAGS := $(LOCAL_CFLAGS) |
| 660 | $(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_CPPFLAGS := $(LOCAL_CPPFLAGS) |
Doug Kwan | 9a8ecf9 | 2011-05-10 21:50:58 -0700 | [diff] [blame] | 661 | $(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_RTTI_FLAG := $(LOCAL_RTTI_FLAG) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 662 | $(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_DEBUG_CFLAGS := $(debug_cflags) |
| 663 | $(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_C_INCLUDES := $(LOCAL_C_INCLUDES) |
Ying Wang | 5f07480 | 2011-11-08 09:31:21 -0800 | [diff] [blame] | 664 | $(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_IMPORT_INCLUDES := $(import_includes) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 665 | $(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_LDFLAGS := $(LOCAL_LDFLAGS) |
| 666 | $(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_LDLIBS := $(LOCAL_LDLIBS) |
Jeff Brown | 703e7c6 | 2011-02-04 20:15:00 -0800 | [diff] [blame] | 667 | $(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_NO_CRT := $(LOCAL_NO_CRT) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 668 | |
| 669 | # this is really the way to get the files onto the command line instead |
| 670 | # of using $^, because then LOCAL_ADDITIONAL_DEPENDENCIES doesn't work |
| 671 | $(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_ALL_SHARED_LIBRARIES := $(built_shared_libraries) |
| 672 | $(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_ALL_STATIC_LIBRARIES := $(built_static_libraries) |
| 673 | $(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_ALL_WHOLE_STATIC_LIBRARIES := $(built_whole_libraries) |
| 674 | $(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_ALL_OBJECTS := $(all_objects) |
| 675 | |
| 676 | ########################################################### |
| 677 | # Define library dependencies. |
| 678 | ########################################################### |
| 679 | # all_libraries is used for the dependencies on LOCAL_BUILT_MODULE. |
| 680 | all_libraries := \ |
| 681 | $(built_shared_libraries) \ |
| 682 | $(built_static_libraries) \ |
| 683 | $(built_whole_libraries) |
| 684 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 685 | # Also depend on the notice files for any static libraries that |
| 686 | # are linked into this module. This will force them to be installed |
| 687 | # when this module is. |
| 688 | $(LOCAL_INSTALLED_MODULE): | $(installed_static_library_notice_file_targets) |
Ying Wang | 5f07480 | 2011-11-08 09:31:21 -0800 | [diff] [blame] | 689 | |
| 690 | ########################################################### |
| 691 | # Export includes |
| 692 | ########################################################### |
| 693 | export_includes := $(intermediates)/export_includes |
| 694 | $(export_includes): PRIVATE_EXPORT_C_INCLUDE_DIRS := $(LOCAL_EXPORT_C_INCLUDE_DIRS) |
Ying Wang | 68f1c77 | 2012-04-23 21:29:18 -0700 | [diff] [blame] | 695 | $(export_includes) : $(LOCAL_MODULE_MAKEFILE) |
Ying Wang | 5f07480 | 2011-11-08 09:31:21 -0800 | [diff] [blame] | 696 | @echo Export includes file: $< -- $@ |
| 697 | $(hide) mkdir -p $(dir $@) && rm -f $@ |
| 698 | ifdef LOCAL_EXPORT_C_INCLUDE_DIRS |
| 699 | $(hide) for d in $(PRIVATE_EXPORT_C_INCLUDE_DIRS); do \ |
| 700 | echo "-I $$d" >> $@; \ |
| 701 | done |
| 702 | else |
| 703 | $(hide) touch $@ |
| 704 | endif |
Ying Wang | 616e596 | 2012-04-18 17:35:55 -0700 | [diff] [blame] | 705 | |
| 706 | # Make sure export_includes gets generated when you are running mm/mmm |
| 707 | $(LOCAL_BUILT_MODULE) : | $(export_includes) |