Ensures that no stale/obsolete shared libraries are left in the application's project path before the build. Also fix a minor typo that made the ABI selection process not work properly in certain cases.
33 lines
1.3 KiB
Makefile
33 lines
1.3 KiB
Makefile
# Copyright (C) 2009 The Android Open Source Project
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
#
|
|
|
|
# Installed module handling
|
|
#
|
|
LOCAL_INSTALLED_MODULE := $(NDK_APP_DEST)/$(notdir $(LOCAL_BUILT_MODULE))
|
|
|
|
$(LOCAL_INSTALLED_MODULE): PRIVATE_NAME := $(notdir $(LOCAL_BUILT_MODULE))
|
|
$(LOCAL_INSTALLED_MODULE): PRIVATE_SRC := $(LOCAL_BUILT_MODULE)
|
|
$(LOCAL_INSTALLED_MODULE): PRIVATE_DEST := $(NDK_APP_DEST)
|
|
$(LOCAL_INSTALLED_MODULE): PRIVATE_DST := $(LOCAL_INSTALLED_MODULE)
|
|
|
|
$(LOCAL_INSTALLED_MODULE): $(LOCAL_BUILT_MODULE) clean-installed-binaries
|
|
@ echo "Install : $(PRIVATE_NAME) => $(PRIVATE_DEST)"
|
|
$(hide) mkdir -p $(PRIVATE_DEST)
|
|
$(hide) install -p $(PRIVATE_SRC) $(PRIVATE_DST)
|
|
$(hide) $(call cmd-strip, $(PRIVATE_DST))
|
|
|
|
ALL_INSTALLED_MODULES += $(LOCAL_INSTALLED_MODULE)
|
|
|