Android.mk revision c3efb236108cf27a97d4cf7f05ee4a9a02f8e5fa
1# 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
15LOCAL_PATH:= $(call my-dir)
16include $(LOCAL_PATH)/../common.mk
17
18libabi_common_src := \
19	op_abi.c
20
21# Build libabi on target
22include $(CLEAR_VARS)
23
24LOCAL_SRC_FILES:= $(libabi_common_src)
25LOCAL_C_INCLUDES := $(common_target_c_includes)
26LOCAL_CFLAGS := $(common_target_cflags)
27LOCAL_MODULE_TAGS := optional
28LOCAL_MODULE := libabi
29
30include $(BUILD_STATIC_LIBRARY)
31
32# Build libabi on host
33include $(CLEAR_VARS)
34
35LOCAL_SRC_FILES:= \
36	$(libabi_common_src) \
37	abi.cpp
38
39LOCAL_C_INCLUDES := $(common_host_c_includes)
40LOCAL_CFLAGS := $(common_host_cflags)
41LOCAL_LDFLAGS := $(common_host_ldflags)
42LOCAL_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
52LOCAL_C_INCLUDES := $(common_host_c_includes)
53LOCAL_CFLAGS := $(common_host_cflags)
54LOCAL_LDFLAGS := $(common_host_ldflags)
55LOCAL_STATIC_LIBRARIES := libabi libdb libopt++ libutil libutil++ libpopt
56LOCAL_LDLIBS := -liberty
57LOCAL_MODULE_TAGS := optional
58LOCAL_MODULE := opimport
59
60include $(BUILD_HOST_EXECUTABLE)
61endif