55 lines
1.2 KiB
Makefile
55 lines
1.2 KiB
Makefile
LOCAL_PATH := $(call my-dir)
|
|
|
|
x86_instprinter_TBLGEN_TABLES := \
|
|
X86GenAsmWriter.inc \
|
|
X86GenAsmWriter1.inc \
|
|
X86GenInstrInfo.inc \
|
|
X86GenRegisterInfo.inc \
|
|
X86GenSubtargetInfo.inc
|
|
|
|
x86_instprinter_SRC_FILES := \
|
|
X86ATTInstPrinter.cpp \
|
|
X86IntelInstPrinter.cpp \
|
|
X86InstComments.cpp
|
|
|
|
# For the device
|
|
# =====================================================
|
|
ifneq (true,$(DISABLE_LLVM_DEVICE_BUILDS))
|
|
include $(CLEAR_VARS)
|
|
include $(CLEAR_TBLGEN_VARS)
|
|
|
|
TBLGEN_TABLES := $(x86_instprinter_TBLGEN_TABLES)
|
|
|
|
TBLGEN_TD_DIR := $(LOCAL_PATH)/..
|
|
|
|
LOCAL_SRC_FILES := $(x86_instprinter_SRC_FILES)
|
|
|
|
LOCAL_C_INCLUDES += $(LOCAL_PATH)/..
|
|
|
|
LOCAL_MODULE:= libLLVMX86AsmPrinter
|
|
|
|
include $(LLVM_DEVICE_BUILD_MK)
|
|
include $(LLVM_TBLGEN_RULES_MK)
|
|
include $(BUILD_STATIC_LIBRARY)
|
|
endif
|
|
|
|
# For the host
|
|
# =====================================================
|
|
include $(CLEAR_VARS)
|
|
include $(CLEAR_TBLGEN_VARS)
|
|
|
|
TBLGEN_TABLES := $(x86_instprinter_TBLGEN_TABLES)
|
|
|
|
TBLGEN_TD_DIR := $(LOCAL_PATH)/..
|
|
|
|
LOCAL_SRC_FILES := $(x86_instprinter_SRC_FILES)
|
|
|
|
LOCAL_C_INCLUDES += $(LOCAL_PATH)/..
|
|
|
|
LOCAL_MODULE := libLLVMX86AsmPrinter
|
|
|
|
LOCAL_MODULE_HOST_OS := darwin linux windows
|
|
|
|
include $(LLVM_HOST_BUILD_MK)
|
|
include $(LLVM_TBLGEN_RULES_MK)
|
|
include $(BUILD_HOST_STATIC_LIBRARY)
|