Home | History | Annotate | Download | only in libabi
      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 
     15 LOCAL_PATH:= $(call my-dir)
     16 include $(LOCAL_PATH)/../common.mk
     17 
     18 libabi_common_src := \
     19 	op_abi.c
     20 
     21 # Build libabi on target
     22 include $(CLEAR_VARS)
     23 
     24 LOCAL_SRC_FILES:= $(libabi_common_src)
     25 LOCAL_C_INCLUDES := $(common_target_c_includes)
     26 LOCAL_CFLAGS := $(common_target_cflags)
     27 LOCAL_MODULE_TAGS := optional
     28 LOCAL_MODULE := liboprofile_abi
     29 
     30 include $(BUILD_STATIC_LIBRARY)
     31 
     32 # Build libabi on host
     33 ifeq ($(HAVE_LIBBFD),true)
     34 include $(CLEAR_VARS)
     35 
     36 LOCAL_SRC_FILES:= \
     37 	$(libabi_common_src) \
     38 	abi.cpp
     39 
     40 LOCAL_C_INCLUDES := $(common_host_c_includes)
     41 LOCAL_CFLAGS := $(common_host_cflags)
     42 LOCAL_MODULE_TAGS := optional
     43 LOCAL_MODULE := liboprofile_abi
     44 
     45 include $(BUILD_HOST_STATIC_LIBRARY)
     46 endif
     47 
     48 # Build opimport on host
     49 ifeq ($(HAVE_LIBBFD),true)
     50 include $(CLEAR_VARS)
     51 
     52 LOCAL_SRC_FILES:= opimport.cpp
     53 LOCAL_C_INCLUDES := $(common_host_c_includes)
     54 LOCAL_CFLAGS := $(common_host_cflags)
     55 LOCAL_STATIC_LIBRARIES := \
     56 	liboprofile_abi \
     57 	liboprofile_db \
     58 	liboprofile_opt++ \
     59 	liboprofile_util \
     60 	liboprofile_util++ \
     61 	liboprofile_popt \
     62 	libiberty
     63 LOCAL_MODULE_TAGS := optional
     64 LOCAL_MODULE := opimport
     65 
     66 include $(BUILD_HOST_EXECUTABLE)
     67 endif
     68