blob: 686759f8488b181d8df502aa4ea2f071afa88a20 [file] [log] [blame]
# Copyright 2007 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.
# This makefile builds both for host and target, and so all the
# common definitions are factored out into a separate file to
# minimize duplication between the build rules.
LOCAL_PATH:= $(call my-dir)
#
# Build rules for the target.
#
# We only build ffi at all for non-arm, non-x86 targets.
ifneq ($(TARGET_ARCH),arm)
ifneq ($(TARGET_ARCH),x86)
include $(CLEAR_VARS)
ffi_arch := $(TARGET_ARCH)
ffi_os := $(TARGET_OS)
# This include just keeps the nesting a bit saner.
include $(LOCAL_PATH)/Libffi.mk
LOCAL_MODULE_TAGS := optional
LOCAL_MODULE := libffi
include $(BUILD_SHARED_LIBRARY)
endif
endif
# Also include the rules for the test suite.
include external/libffi/testsuite/Android.mk