Home | History | Annotate | Download | only in MacOSX-Kernel
      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_PluginProcessDarwin_SRC_FILES := \
     12   CommunicationKDP.cpp \
     13   ProcessKDP.cpp \
     14   ProcessKDPLog.cpp \
     15   RegisterContextKDP_arm.cpp \
     16   RegisterContextKDP_i386.cpp \
     17   RegisterContextKDP_x86_64.cpp \
     18   ThreadKDP.cpp
     19 
     20 LOCAL_SRC_FILES := $(lldb_PluginProcessDarwin_SRC_FILES)
     21 
     22 LOCAL_MODULE:= liblldbPluginProcessDarwin
     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