blob: e100e15eab8d27ad3b6144f3668ebc76c67f9717 [file] [log] [blame]
Stephen Hines150a70b2011-07-18 17:21:46 -07001#
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
17local_cflags_for_libbcinfo := -Wall -Wno-unused-parameter -Werror
18ifneq ($(TARGET_BUILD_VARIANT),eng)
19local_cflags_for_libbcinfo += -D__DISABLE_ASSERTS
20endif
21
Stephen Hines932bc6e2011-07-27 16:26:26 -070022ifeq "REL" "$(PLATFORM_VERSION_CODENAME)"
23 BCINFO_API_VERSION := $(PLATFORM_SDK_VERSION)
24else
25 # Increment by 1 whenever this is not a final release build, since we want to
26 # be able to see the RS version number change during development.
27 # See build/core/version_defaults.mk for more information about this.
28 BCINFO_API_VERSION := "(1 + $(PLATFORM_SDK_VERSION))"
29endif
30local_cflags_for_libbcinfo += -DBCINFO_API_VERSION=$(BCINFO_API_VERSION)
31
Stephen Hines150a70b2011-07-18 17:21:46 -070032LOCAL_PATH := $(call my-dir)
33
Stephen Hines932bc6e2011-07-27 16:26:26 -070034libbcinfo_SRC_FILES := \
35 BitcodeTranslator.cpp \
36 MetadataExtractor.cpp
37
Stephen Hines16c9b362011-07-18 18:22:16 -070038libbcinfo_C_INCLUDES := $(LOCAL_PATH)/../include
39libbcinfo_STATIC_LIBRARIES := \
40 libLLVMBitReader \
41 libLLVMBitWriter \
42 libLLVMCore \
43 libLLVMSupport \
Stephen Hines932bc6e2011-07-27 16:26:26 -070044 libLLVMBitReader_2_7 \
Stephen Hines16c9b362011-07-18 18:22:16 -070045
Stephen Hines150a70b2011-07-18 17:21:46 -070046LLVM_ROOT_PATH := external/llvm
47
48include $(CLEAR_VARS)
49
50LOCAL_MODULE := libbcinfo
51LOCAL_MODULE_CLASS := SHARED_LIBRARIES
52LOCAL_MODULE_TAGS := optional
53intermediates := $(local-intermediates-dir)
54
Stephen Hines16c9b362011-07-18 18:22:16 -070055LOCAL_SRC_FILES := $(libbcinfo_SRC_FILES)
Stephen Hines150a70b2011-07-18 17:21:46 -070056
57LOCAL_CFLAGS += $(local_cflags_for_libbcinfo)
58
Stephen Hines16c9b362011-07-18 18:22:16 -070059LOCAL_C_INCLUDES := $(libbcinfo_C_INCLUDES)
Stephen Hines150a70b2011-07-18 17:21:46 -070060
Stephen Hines16c9b362011-07-18 18:22:16 -070061LOCAL_STATIC_LIBRARIES := $(libbcinfo_STATIC_LIBRARIES)
Stephen Hines150a70b2011-07-18 17:21:46 -070062LOCAL_SHARED_LIBRARIES := libcutils libstlport
63
64include $(LLVM_ROOT_PATH)/llvm-device-build.mk
65include $(BUILD_SHARED_LIBRARY)
Stephen Hines16c9b362011-07-18 18:22:16 -070066
67include $(CLEAR_VARS)
68
69LOCAL_MODULE := libbcinfo
70LOCAL_MODULE_CLASS := SHARED_LIBRARIES
71LOCAL_MODULE_TAGS := optional
72LOCAL_IS_HOST_MODULE := true
73
74LOCAL_SRC_FILES := $(libbcinfo_SRC_FILES)
75
76LOCAL_CFLAGS += $(local_cflags_for_libbcinfo)
77
78LOCAL_C_INCLUDES := $(libbcinfo_C_INCLUDES)
79
80LOCAL_STATIC_LIBRARIES += $(libbcinfo_STATIC_LIBRARIES)
81LOCAL_STATIC_LIBRARIES += libcutils
82
83LOCAL_LDLIBS := -ldl -lpthread
84
85include $(LLVM_ROOT_PATH)/llvm-host-build.mk
86include $(BUILD_HOST_SHARED_LIBRARY)
87
Stephen Hines932bc6e2011-07-27 16:26:26 -070088#=====================================================================
89# Include Subdirectories
90#=====================================================================
91include $(call all-makefiles-under,$(LOCAL_PATH))