blob: ba2f5565b581d8a01d8f00d89b58af7468591ee6 [file] [log] [blame]
Jeff Brownc3efb232011-03-17 16:08:14 -07001# Copyright (C) 2008 The Android Open Source Project
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
The Android Open Source Project10e23ee2009-03-03 19:30:30 -080015LOCAL_PATH:= $(call my-dir)
Jeff Brownc3efb232011-03-17 16:08:14 -070016include $(LOCAL_PATH)/../common.mk
Jeff Brownb415fab2011-01-11 12:38:32 -080017
18libabi_common_src := \
19 op_abi.c
20
Jeff Brownb415fab2011-01-11 12:38:32 -080021# Build libabi on target
The Android Open Source Project10e23ee2009-03-03 19:30:30 -080022include $(CLEAR_VARS)
23
Jeff Brownb415fab2011-01-11 12:38:32 -080024LOCAL_SRC_FILES:= $(libabi_common_src)
Jeff Brownc3efb232011-03-17 16:08:14 -070025LOCAL_C_INCLUDES := $(common_target_c_includes)
26LOCAL_CFLAGS := $(common_target_cflags)
Jeff Brownb415fab2011-01-11 12:38:32 -080027LOCAL_MODULE_TAGS := optional
The Android Open Source Project10e23ee2009-03-03 19:30:30 -080028LOCAL_MODULE := libabi
29
The Android Open Source Project10e23ee2009-03-03 19:30:30 -080030include $(BUILD_STATIC_LIBRARY)
Jeff Brownb415fab2011-01-11 12:38:32 -080031
Jeff Brownb415fab2011-01-11 12:38:32 -080032# Build libabi on host
33include $(CLEAR_VARS)
34
35LOCAL_SRC_FILES:= \
36 $(libabi_common_src) \
37 abi.cpp
38
Jeff Brownc3efb232011-03-17 16:08:14 -070039LOCAL_C_INCLUDES := $(common_host_c_includes)
40LOCAL_CFLAGS := $(common_host_cflags)
41LOCAL_LDFLAGS := $(common_host_ldflags)
Jeff Brownb415fab2011-01-11 12:38:32 -080042LOCAL_MODULE_TAGS := optional
43LOCAL_MODULE := libabi
44
45include $(BUILD_HOST_STATIC_LIBRARY)
46
47# Build opimport on host
48ifeq ($(HAVE_LIBBFD),true)
49include $(CLEAR_VARS)
50
51LOCAL_SRC_FILES:= opimport.cpp
Jeff Brownc3efb232011-03-17 16:08:14 -070052LOCAL_C_INCLUDES := $(common_host_c_includes)
53LOCAL_CFLAGS := $(common_host_cflags)
54LOCAL_LDFLAGS := $(common_host_ldflags)
Jeff Brownb415fab2011-01-11 12:38:32 -080055LOCAL_STATIC_LIBRARIES := libabi libdb libopt++ libutil libutil++ libpopt
56LOCAL_LDLIBS := -liberty
57LOCAL_MODULE_TAGS := optional
58LOCAL_MODULE := opimport
59
60include $(BUILD_HOST_EXECUTABLE)
Jeff Brownc3efb232011-03-17 16:08:14 -070061endif