Home | History | Annotate | Download | only in AsmPrinter
      1 LOCAL_PATH := $(call my-dir)
      2 
      3 codegen_asmprinter_SRC_FILES := \
      4   AsmPrinter.cpp
      5 
      6 # For the host
      7 # =====================================================
      8 include $(CLEAR_VARS)
      9 
     10 LOCAL_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 	ErlangGCPrinter.cpp \
     22 	OcamlGCPrinter.cpp \
     23 	Win64Exception.cpp
     24 
     25 LOCAL_MODULE:= libLLVMAsmPrinter
     26 
     27 LOCAL_MODULE_TAGS := optional
     28 
     29 include $(LLVM_HOST_BUILD_MK)
     30 include $(LLVM_GEN_INTRINSICS_MK)
     31 include $(BUILD_HOST_STATIC_LIBRARY)
     32 
     33 # For the device
     34 # =====================================================
     35 include $(CLEAR_VARS)
     36 
     37 LOCAL_SRC_FILES :=	\
     38 	AsmPrinter.cpp \
     39 	AsmPrinterDwarf.cpp \
     40 	AsmPrinterInlineAsm.cpp \
     41 	ARMException.cpp        \
     42 	DIE.cpp \
     43 	DwarfAccelTable.cpp \
     44 	DwarfCFIException.cpp \
     45 	DwarfCompileUnit.cpp \
     46 	DwarfDebug.cpp  \
     47 	DwarfException.cpp      \
     48 	ErlangGCPrinter.cpp \
     49 	Win64Exception.cpp \
     50 	$(LOCAL_SRC_FILES)
     51 
     52 LOCAL_MODULE:= libLLVMAsmPrinter
     53 
     54 LOCAL_MODULE_TAGS := optional
     55 
     56 include $(LLVM_DEVICE_BUILD_MK)
     57 include $(LLVM_GEN_INTRINSICS_MK)
     58 include $(BUILD_STATIC_LIBRARY)
     59