2016-07-25 23:03:53 +00:00
|
|
|
$(call record-module-type,STATIC_LIBRARY)
|
2014-04-17 17:03:35 +00:00
|
|
|
my_prefix := TARGET_
|
2014-03-21 19:29:32 +00: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 00:17:28 +00:00
|
|
|
LOCAL_2ND_ARCH_VAR_PREFIX :=
|
2014-02-06 22:45:37 +00:00
|
|
|
include $(BUILD_SYSTEM)/module_arch_supported.mk
|
|
|
|
|
|
|
|
ifeq ($(my_module_arch_supported),true)
|
2014-01-16 00:02:16 +00:00
|
|
|
include $(BUILD_SYSTEM)/static_library_internal.mk
|
2014-01-18 00:17:28 +00:00
|
|
|
endif
|
2009-03-04 03:28:42 +00:00
|
|
|
|
2014-01-16 00:02:16 +00:00
|
|
|
ifdef TARGET_2ND_ARCH
|
2014-02-06 22:45:37 +00: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 00:17:28 +00:00
|
|
|
# Build for TARGET_2ND_ARCH
|
2014-01-16 00:02:16 +00:00
|
|
|
LOCAL_BUILT_MODULE :=
|
|
|
|
LOCAL_INSTALLED_MODULE :=
|
|
|
|
LOCAL_INTERMEDIATE_TARGETS :=
|
2009-03-04 03:28:42 +00:00
|
|
|
|
2014-01-16 00:02:16 +00:00
|
|
|
include $(BUILD_SYSTEM)/static_library_internal.mk
|
2014-02-06 22:45:37 +00:00
|
|
|
|
|
|
|
endif
|
|
|
|
|
2014-01-16 00:02:16 +00:00
|
|
|
LOCAL_2ND_ARCH_VAR_PREFIX :=
|
2009-03-04 03:28:42 +00:00
|
|
|
|
2014-01-18 00:17:28 +00:00
|
|
|
endif # TARGET_2ND_ARCH
|
2014-02-06 22:45:37 +00:00
|
|
|
|
|
|
|
my_module_arch_supported :=
|
2014-02-20 21:54:43 +00:00
|
|
|
|
|
|
|
###########################################################
|
|
|
|
## Copy headers to the install tree
|
|
|
|
###########################################################
|
|
|
|
include $(BUILD_COPY_HEADERS)
|