Home | History | Annotate | Download | only in ELF
      1 LOCAL_PATH:= $(call my-dir)
      2 
      3 include $(CLEAR_VARS)
      4 include $(CLEAR_TBLGEN_VARS)
      5 
      6 TBLGEN_TABLES := \
      7   DiagnosticCommonKinds.inc \
      8   DeclNodes.inc \
      9   StmtNodes.inc
     10 
     11 LOCAL_SRC_FILES := \
     12   ELFHeader.cpp \
     13   ObjectFileELF.cpp
     14 
     15 LOCAL_MODULE := liblldbPluginObjectFileELF
     16 LOCAL_MODULE_TAGS := optional
     17 
     18 include $(LLDB_BUILD_MK)
     19 include $(CLANG_VERSION_INC_MK)
     20 include $(CLANG_TBLGEN_RULES_MK)
     21 include $(BUILD_HOST_STATIC_LIBRARY)
     22