2014-04-17 19:03:35 +02:00
|
|
|
my_prefix := TARGET_
|
2014-03-21 20:29:32 +01:00
|
|
|
include $(BUILD_SYSTEM)/multilib.mk
|
|
|
|
|
|
|
|
ifndef my_module_multilib
|
|
|
|
# libraries default to building for both architecturess
|
|
|
|
my_module_multilib := both
|
|
|
|
endif
|
|
|
|
|
2014-01-18 01:17:28 +01:00
|
|
|
LOCAL_2ND_ARCH_VAR_PREFIX :=
|
2014-02-06 23:45:37 +01:00
|
|
|
include $(BUILD_SYSTEM)/module_arch_supported.mk
|
|
|
|
|
|
|
|
ifeq ($(my_module_arch_supported),true)
|
2014-01-16 01:02:16 +01:00
|
|
|
include $(BUILD_SYSTEM)/static_library_internal.mk
|
2014-01-18 01:17:28 +01:00
|
|
|
endif
|
2009-03-04 04:28:42 +01:00
|
|
|
|
2014-01-16 01:02:16 +01:00
|
|
|
ifdef TARGET_2ND_ARCH
|
2014-02-06 23:45:37 +01:00
|
|
|
|
|
|
|
LOCAL_2ND_ARCH_VAR_PREFIX := $(TARGET_2ND_ARCH_VAR_PREFIX)
|
|
|
|
include $(BUILD_SYSTEM)/module_arch_supported.mk
|
|
|
|
|
|
|
|
ifeq ($(my_module_arch_supported),true)
|
2014-01-18 01:17:28 +01:00
|
|
|
# Build for TARGET_2ND_ARCH
|
2014-01-16 01:02:16 +01:00
|
|
|
OVERRIDE_BUILT_MODULE_PATH :=
|
|
|
|
LOCAL_BUILT_MODULE :=
|
|
|
|
LOCAL_INSTALLED_MODULE :=
|
|
|
|
LOCAL_INTERMEDIATE_TARGETS :=
|
2009-03-04 04:28:42 +01:00
|
|
|
|
2014-01-16 01:02:16 +01:00
|
|
|
include $(BUILD_SYSTEM)/static_library_internal.mk
|
2014-02-06 23:45:37 +01:00
|
|
|
|
|
|
|
endif
|
|
|
|
|
2014-01-16 01:02:16 +01:00
|
|
|
LOCAL_2ND_ARCH_VAR_PREFIX :=
|
2009-03-04 04:28:42 +01:00
|
|
|
|
2014-01-18 01:17:28 +01:00
|
|
|
endif # TARGET_2ND_ARCH
|
2014-02-06 23:45:37 +01:00
|
|
|
|
|
|
|
my_module_arch_supported :=
|
2014-02-20 22:54:43 +01:00
|
|
|
|
|
|
|
###########################################################
|
|
|
|
## Copy headers to the install tree
|
|
|
|
###########################################################
|
|
|
|
include $(BUILD_COPY_HEADERS)
|