aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Target/X86/Android.mk
blob: 3e95a31e5382111abdfa4d75a687562cf5803a7b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
LOCAL_PATH := $(call my-dir)

x86_codegen_TBLGEN_TABLES :=	\
    X86GenAsmWriter.inc \
    X86GenAsmWriter1.inc \
    X86GenRegisterInfo.inc	\
    X86GenInstrInfo.inc	\
    X86GenDAGISel.inc	\
    X86GenFastISel.inc	\
    X86GenSubtarget.inc	\
    X86GenCallingConv.inc

x86_codegen_SRC_FILES :=	\
    SSEDomainFix.cpp	\
    X86AsmBackend.cpp	\
    X86AsmPrinter.cpp	\
    X86COFFMachineModuleInfo.cpp	\
    X86CodeEmitter.cpp	\
    X86ELFWriterInfo.cpp	\
    X86FastISel.cpp	\
    X86FloatingPoint.cpp\
    X86FrameLowering.cpp\
    X86ISelDAGToDAG.cpp	\
    X86ISelLowering.cpp	\
    X86InstrInfo.cpp	\
    X86JITInfo.cpp	\
    X86MachObjectWriter.cpp \
    X86MCAsmInfo.cpp	\
    X86MCCodeEmitter.cpp	\
    X86MCInstLower.cpp	\
    X86RegisterInfo.cpp	\
    X86SelectionDAGInfo.cpp	\
    X86Subtarget.cpp	\
    X86TargetMachine.cpp	\
    X86TargetObjectFile.cpp

# For the host
# =====================================================
include $(CLEAR_VARS)
include $(CLEAR_TBLGEN_VARS)

TBLGEN_TABLES := $(x86_codegen_TBLGEN_TABLES)

LOCAL_SRC_FILES := $(x86_codegen_SRC_FILES)

LOCAL_MODULE:= libLLVMX86CodeGen

LOCAL_MODULE_TAGS := optional

include $(LLVM_HOST_BUILD_MK)
include $(LLVM_TBLGEN_RULES_MK)
include $(LLVM_GEN_INTRINSICS_MK)
include $(BUILD_HOST_STATIC_LIBRARY)

# For the device only
# =====================================================
ifeq ($(TARGET_ARCH),x86)
include $(CLEAR_VARS)
include $(CLEAR_TBLGEN_VARS)

TBLGEN_TABLES := $(x86_codegen_TBLGEN_TABLES)

LOCAL_SRC_FILES := $(x86_codegen_SRC_FILES)

LOCAL_MODULE:= libLLVMX86CodeGen

LOCAL_MODULE_TAGS := optional

include $(LLVM_DEVICE_BUILD_MK)
include $(LLVM_TBLGEN_RULES_MK)
include $(LLVM_GEN_INTRINSICS_MK)
include $(BUILD_STATIC_LIBRARY)
endif