Home | History | Annotate | Download | only in MacOSX
      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_PluginPlatformMacOSX_SRC_FILES := \
     12   PlatformDarwin.cpp \
     13   PlatformDarwinKernel.cpp \
     14   PlatformiOSSimulator.cpp \
     15   PlatformMacOSX.cpp \
     16   PlatformRemoteiOS.cpp
     17 
     18 LOCAL_SRC_FILES := $(lldb_PluginPlatformMacOSX_SRC_FILES)
     19 
     20 LOCAL_MODULE:= liblldbPluginPlatformMacOSX
     21 LOCAL_MODULE_TAGS := optional
     22 
     23 include $(LLDB_BUILD_MK)
     24 include $(CLANG_VERSION_INC_MK)
     25 include $(CLANG_TBLGEN_RULES_MK)
     26 include $(BUILD_HOST_STATIC_LIBRARY)
     27