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 	DwarfCFIException.cpp \
     17 	DwarfCompileUnit.cpp \
     18 	DwarfDebug.cpp	\
     19 	DwarfException.cpp	\
     20 	OcamlGCPrinter.cpp \
     21 	Win64Exception.cpp
     22 
     23 LOCAL_MODULE:= libLLVMAsmPrinter
     24 
     25 LOCAL_MODULE_TAGS := optional
     26 
     27 include $(LLVM_HOST_BUILD_MK)
     28 include $(BUILD_HOST_STATIC_LIBRARY)
     29 
     30 # For the device
     31 # =====================================================
     32 include $(CLEAR_VARS)
     33 
     34 LOCAL_SRC_FILES :=	\
     35 	AsmPrinter.cpp	\
     36 	AsmPrinterDwarf.cpp	\
     37 	AsmPrinterInlineAsm.cpp
     38 
     39 LOCAL_MODULE:= libLLVMAsmPrinter
     40 
     41 LOCAL_MODULE_TAGS := optional
     42 
     43 include $(LLVM_DEVICE_BUILD_MK)
     44 include $(BUILD_STATIC_LIBRARY)
     45