55 lines
1.3 KiB
Makefile
55 lines
1.3 KiB
Makefile
LOCAL_PATH := $(call my-dir)
|
|
|
|
codegen_asmprinter_SRC_FILES := \
|
|
AddressPool.cpp \
|
|
ARMException.cpp \
|
|
AsmPrinter.cpp \
|
|
AsmPrinterDwarf.cpp \
|
|
AsmPrinterInlineAsm.cpp \
|
|
DbgValueHistoryCalculator.cpp \
|
|
DebugLocStream.cpp \
|
|
DIE.cpp \
|
|
DIEHash.cpp \
|
|
DwarfAccelTable.cpp \
|
|
DwarfCFIException.cpp \
|
|
DwarfCompileUnit.cpp \
|
|
DwarfDebug.cpp \
|
|
DwarfExpression.cpp \
|
|
DwarfFile.cpp \
|
|
DwarfStringPool.cpp \
|
|
DwarfUnit.cpp \
|
|
EHStreamer.cpp \
|
|
ErlangGCPrinter.cpp \
|
|
OcamlGCPrinter.cpp \
|
|
WinException.cpp \
|
|
WinCodeViewLineTables.cpp
|
|
|
|
|
|
|
|
# For the host
|
|
# =====================================================
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_SRC_FILES := $(codegen_asmprinter_SRC_FILES)
|
|
LOCAL_MODULE:= libLLVMAsmPrinter
|
|
|
|
LOCAL_MODULE_HOST_OS := darwin linux windows
|
|
|
|
include $(LLVM_HOST_BUILD_MK)
|
|
include $(LLVM_GEN_ATTRIBUTES_MK)
|
|
include $(LLVM_GEN_INTRINSICS_MK)
|
|
include $(BUILD_HOST_STATIC_LIBRARY)
|
|
|
|
# For the device
|
|
# =====================================================
|
|
ifneq (true,$(DISABLE_LLVM_DEVICE_BUILDS))
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_SRC_FILES := $(codegen_asmprinter_SRC_FILES)
|
|
LOCAL_MODULE:= libLLVMAsmPrinter
|
|
|
|
include $(LLVM_DEVICE_BUILD_MK)
|
|
include $(LLVM_GEN_ATTRIBUTES_MK)
|
|
include $(LLVM_GEN_INTRINSICS_MK)
|
|
include $(BUILD_STATIC_LIBRARY)
|
|
endif
|