084c6ef6fa
There are no common users left. Also add some sanity checks to ensure that people don't attempt to use LOCAL_IS_HOST_MODULE := true with the BUILD_(STATIC|SHARED)_LIBRARY module types (I'm not sure it would work, but it definitely wouldn't be good). Bug: 130722971 Test: treehugger Test: check the warnings on the build_test builds from treehugger Change-Id: I3e571ef80379955149adbceff4500e51dfa016c6
44 lines
1.1 KiB
Makefile
44 lines
1.1 KiB
Makefile
$(call record-module-type,STATIC_LIBRARY)
|
|
ifdef LOCAL_IS_HOST_MODULE
|
|
$(call pretty-error,BUILD_STATIC_LIBRARY is incompatible with LOCAL_IS_HOST_MODULE. Use BUILD_HOST_STATIC_LIBRARY instead)
|
|
endif
|
|
my_prefix := TARGET_
|
|
include $(BUILD_SYSTEM)/multilib.mk
|
|
|
|
ifndef my_module_multilib
|
|
# libraries default to building for both architecturess
|
|
my_module_multilib := both
|
|
endif
|
|
|
|
LOCAL_2ND_ARCH_VAR_PREFIX :=
|
|
include $(BUILD_SYSTEM)/module_arch_supported.mk
|
|
|
|
ifeq ($(my_module_arch_supported),true)
|
|
include $(BUILD_SYSTEM)/static_library_internal.mk
|
|
endif
|
|
|
|
ifdef TARGET_2ND_ARCH
|
|
|
|
LOCAL_2ND_ARCH_VAR_PREFIX := $(TARGET_2ND_ARCH_VAR_PREFIX)
|
|
include $(BUILD_SYSTEM)/module_arch_supported.mk
|
|
|
|
ifeq ($(my_module_arch_supported),true)
|
|
# Build for TARGET_2ND_ARCH
|
|
LOCAL_BUILT_MODULE :=
|
|
LOCAL_INSTALLED_MODULE :=
|
|
LOCAL_INTERMEDIATE_TARGETS :=
|
|
|
|
include $(BUILD_SYSTEM)/static_library_internal.mk
|
|
|
|
endif
|
|
|
|
LOCAL_2ND_ARCH_VAR_PREFIX :=
|
|
|
|
endif # TARGET_2ND_ARCH
|
|
|
|
my_module_arch_supported :=
|
|
|
|
###########################################################
|
|
## Copy headers to the install tree
|
|
###########################################################
|
|
include $(BUILD_COPY_HEADERS)
|