Logan Chien | 7439685 | 2011-07-12 15:50:26 +0800 | [diff] [blame] | 1 | # |
| 2 | # Copyright (C) 2011 The Android Open Source Project |
| 3 | # |
| 4 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | # you may not use this file except in compliance with the License. |
| 6 | # You may obtain a copy of the License at |
| 7 | # |
| 8 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | # |
| 10 | # Unless required by applicable law or agreed to in writing, software |
| 11 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | # See the License for the specific language governing permissions and |
| 14 | # limitations under the License. |
| 15 | # |
| 16 | # |
| 17 | |
| 18 | LOCAL_PATH := $(call my-dir) |
| 19 | include $(LOCAL_PATH)/../../libbcc-config.mk |
| 20 | |
| 21 | ifeq ($(libbcc_USE_DISASSEMBLER),1) |
| 22 | |
| 23 | #===================================================================== |
| 24 | # Common: libbccDisassembler |
| 25 | #===================================================================== |
| 26 | |
| 27 | libbcc_disassembler_SRC_FILES := \ |
| 28 | Disassembler.cpp |
| 29 | |
| 30 | |
| 31 | #===================================================================== |
| 32 | # Device Static Library: libbccDisassembler |
| 33 | #===================================================================== |
| 34 | |
| 35 | include $(CLEAR_VARS) |
| 36 | |
| 37 | LOCAL_MODULE := libbccDisassembler |
| 38 | LOCAL_MODULE_TAGS := optional |
| 39 | LOCAL_MODULE_CLASS := STATIC_LIBRARIES |
| 40 | LOCAL_CFLAGS += $(local_cflags_for_libbcc) |
| 41 | LOCAL_C_INCLUDES := $(libbcc_C_INCLUDES) |
| 42 | LOCAL_SRC_FILES := $(libbcc_disassembler_SRC_FILES) |
| 43 | |
| 44 | include $(LLVM_ROOT_PATH)/llvm-device-build.mk |
| 45 | include $(BUILD_STATIC_LIBRARY) |
| 46 | |
| 47 | |
| 48 | #===================================================================== |
| 49 | # Host Static Library: libbccDisassembler |
| 50 | #===================================================================== |
| 51 | |
| 52 | include $(CLEAR_VARS) |
| 53 | |
| 54 | LOCAL_MODULE := libbccDisassembler |
| 55 | LOCAL_MODULE_TAGS := optional |
| 56 | LOCAL_MODULE_CLASS := STATIC_LIBRARIES |
| 57 | LOCAL_CFLAGS += $(local_cflags_for_libbcc) |
| 58 | LOCAL_C_INCLUDES := $(libbcc_C_INCLUDES) |
| 59 | LOCAL_SRC_FILES := $(libbcc_disassembler_SRC_FILES) |
| 60 | |
| 61 | include $(LLVM_ROOT_PATH)/llvm-host-build.mk |
| 62 | include $(BUILD_HOST_STATIC_LIBRARY) |
| 63 | |
| 64 | endif # $(libbcc_USE_DISASSEMBLER) |