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 := liboprofile_abi
29
30include $(BUILD_STATIC_LIBRARY)
31
32# Build libabi on host
33ifeq ($(HAVE_LIBBFD),true)
34include $(CLEAR_VARS)
35
36LOCAL_SRC_FILES:= \
37	$(libabi_common_src) \
38	abi.cpp
39
40LOCAL_C_INCLUDES := $(common_host_c_includes)
41LOCAL_CFLAGS := $(common_host_cflags)
42LOCAL_MODULE_TAGS := optional
43LOCAL_MODULE := liboprofile_abi
44
45include $(BUILD_HOST_STATIC_LIBRARY)
46endif
47
48# Build opimport on host
49ifeq ($(HAVE_LIBBFD),true)
50include $(CLEAR_VARS)
51
52LOCAL_SRC_FILES:= opimport.cpp
53LOCAL_C_INCLUDES := $(common_host_c_includes)
54LOCAL_CFLAGS := $(common_host_cflags)
55LOCAL_STATIC_LIBRARIES := \
56	liboprofile_abi \
57	liboprofile_db \
58	liboprofile_opt++ \
59	liboprofile_util \
60	liboprofile_util++ \
61	liboprofile_popt \
62	libiberty
63LOCAL_MODULE_TAGS := optional
64LOCAL_MODULE := opimport
65
66include $(BUILD_HOST_EXECUTABLE)
67endif
68