OSDN Git Service

Stop checking HOST_OS, whitelist windows modules
[android-x86/external-llvm.git] / lib / Target / ARM / TargetInfo / Android.mk
1 LOCAL_PATH := $(call my-dir)
2
3 arm_target_info_TBLGEN_TABLES := \
4   ARMGenSubtargetInfo.inc \
5   ARMGenRegisterInfo.inc \
6   ARMGenInstrInfo.inc
7
8 arm_target_info_SRC_FILES := \
9   ARMTargetInfo.cpp
10
11 # For the host
12 # =====================================================
13 include $(CLEAR_VARS)
14 include $(CLEAR_TBLGEN_VARS)
15
16 TBLGEN_TABLES := $(arm_target_info_TBLGEN_TABLES)
17
18 TBLGEN_TD_DIR := $(LOCAL_PATH)/..
19
20 LOCAL_SRC_FILES := $(arm_target_info_SRC_FILES)
21
22 LOCAL_C_INCLUDES +=     \
23         $(LOCAL_PATH)/..
24
25 LOCAL_MODULE:= libLLVMARMInfo
26
27 LOCAL_MODULE_HOST_OS := darwin linux windows
28
29 include $(LLVM_HOST_BUILD_MK)
30 include $(LLVM_TBLGEN_RULES_MK)
31 include $(BUILD_HOST_STATIC_LIBRARY)
32
33 # For the device
34 # =====================================================
35 ifneq (true,$(DISABLE_LLVM_DEVICE_BUILDS))
36 include $(CLEAR_VARS)
37 include $(CLEAR_TBLGEN_VARS)
38
39 TBLGEN_TABLES := $(arm_target_info_TBLGEN_TABLES)
40
41 TBLGEN_TD_DIR := $(LOCAL_PATH)/..
42
43 LOCAL_SRC_FILES := $(arm_target_info_SRC_FILES)
44
45 LOCAL_C_INCLUDES +=     \
46         $(LOCAL_PATH)/..
47
48 LOCAL_MODULE:= libLLVMARMInfo
49
50 include $(LLVM_DEVICE_BUILD_MK)
51 include $(LLVM_TBLGEN_RULES_MK)
52 include $(BUILD_STATIC_LIBRARY)
53 endif