Home | History | Annotate | Download | only in gdb-remote
      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 lldb_PluginProcessGDBRemote_SRC_FILES := \
     12   GDBRemoteCommunicationClient.cpp \
     13   GDBRemoteCommunication.cpp \
     14   GDBRemoteCommunicationServer.cpp \
     15   GDBRemoteRegisterContext.cpp \
     16   ProcessGDBRemote.cpp \
     17   ProcessGDBRemoteLog.cpp \
     18   ThreadGDBRemote.cpp
     19 
     20 LOCAL_SRC_FILES := $(lldb_PluginProcessGDBRemote_SRC_FILES)
     21 
     22 LOCAL_MODULE:= liblldbPluginProcessGDBRemote
     23 LOCAL_MODULE_TAGS := optional
     24 
     25 include $(LLDB_BUILD_MK)
     26 include $(CLANG_VERSION_INC_MK)
     27 include $(CLANG_TBLGEN_RULES_MK)
     28 include $(BUILD_HOST_STATIC_LIBRARY)
     29