blob: 49b7ca9f3db58e96ab847ce4db2135245a5b0da8 [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
Jeff Brown6e67eb02011-04-08 12:38:32 -070028LOCAL_MODULE := liboprofile_abi
The Android Open Source Project10e23ee2009-03-03 19:30:30 -080029
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
Jeff Brown5e369a02011-04-07 18:45:41 -070033ifeq ($(HAVE_LIBBFD),true)
Jeff Brownb415fab2011-01-11 12:38:32 -080034include $(CLEAR_VARS)
35
36LOCAL_SRC_FILES:= \
37 $(libabi_common_src) \
38 abi.cpp
39
Jeff Brownc3efb232011-03-17 16:08:14 -070040LOCAL_C_INCLUDES := $(common_host_c_includes)
41LOCAL_CFLAGS := $(common_host_cflags)
Jeff Brownb415fab2011-01-11 12:38:32 -080042LOCAL_MODULE_TAGS := optional
Jeff Brown6e67eb02011-04-08 12:38:32 -070043LOCAL_MODULE := liboprofile_abi
Jeff Brownb415fab2011-01-11 12:38:32 -080044
45include $(BUILD_HOST_STATIC_LIBRARY)
Jeff Brown5e369a02011-04-07 18:45:41 -070046endif
Jeff Brownb415fab2011-01-11 12:38:32 -080047
48# Build opimport on host
49ifeq ($(HAVE_LIBBFD),true)
50include $(CLEAR_VARS)
51
52LOCAL_SRC_FILES:= opimport.cpp
Jeff Brownc3efb232011-03-17 16:08:14 -070053LOCAL_C_INCLUDES := $(common_host_c_includes)
54LOCAL_CFLAGS := $(common_host_cflags)
Jeff Brown6e67eb02011-04-08 12:38:32 -070055LOCAL_STATIC_LIBRARIES := \
56 liboprofile_abi \
57 liboprofile_db \
58 liboprofile_opt++ \
59 liboprofile_util \
60 liboprofile_util++ \
61 liboprofile_popt \
62 libiberty
Jeff Brownb415fab2011-01-11 12:38:32 -080063LOCAL_MODULE_TAGS := optional
64LOCAL_MODULE := opimport
65
66include $(BUILD_HOST_EXECUTABLE)
Jeff Brown5e369a02011-04-07 18:45:41 -070067endif