1LOCAL_PATH := $(call my-dir) 2 3codegen_asmprinter_SRC_FILES := \ 4 AsmPrinter.cpp 5 6# For the host 7# ===================================================== 8include $(CLEAR_VARS) 9 10LOCAL_SRC_FILES := \ 11 AsmPrinter.cpp \ 12 AsmPrinterDwarf.cpp \ 13 AsmPrinterInlineAsm.cpp \ 14 ARMException.cpp \ 15 DIE.cpp \ 16 DwarfAccelTable.cpp \ 17 DwarfCFIException.cpp \ 18 DwarfCompileUnit.cpp \ 19 DwarfDebug.cpp \ 20 DwarfException.cpp \ 21 OcamlGCPrinter.cpp \ 22 Win64Exception.cpp 23 24LOCAL_MODULE:= libLLVMAsmPrinter 25 26LOCAL_MODULE_TAGS := optional 27 28include $(LLVM_HOST_BUILD_MK) 29include $(BUILD_HOST_STATIC_LIBRARY) 30 31# For the device 32# ===================================================== 33include $(CLEAR_VARS) 34 35LOCAL_SRC_FILES := \ 36 AsmPrinter.cpp \ 37 AsmPrinterDwarf.cpp \ 38 AsmPrinterInlineAsm.cpp \ 39 ARMException.cpp \ 40 DIE.cpp \ 41 DwarfAccelTable.cpp \ 42 DwarfCFIException.cpp \ 43 DwarfCompileUnit.cpp \ 44 DwarfDebug.cpp \ 45 DwarfException.cpp \ 46 Win64Exception.cpp \ 47 $(LOCAL_SRC_FILES) 48 49LOCAL_MODULE:= libLLVMAsmPrinter 50 51LOCAL_MODULE_TAGS := optional 52 53include $(LLVM_DEVICE_BUILD_MK) 54include $(BUILD_STATIC_LIBRARY) 55