Home | History | Annotate | Download | only in AppleObjCRuntime
      1 LOCAL_PATH:= $(call my-dir)
      2 
      3 include $(CLEAR_VARS)
      4 include $(CLEAR_TBLGEN_VARS)
      5 
      6 TBLGEN_TABLES := \
      7   CommentCommandList.inc \
      8   DiagnosticCommonKinds.inc \
      9   DeclNodes.inc \
     10   StmtNodes.inc
     11 
     12 lldb_PluginLanguageRuntimeObjCAppleObjCRuntime_SRC_FILES := \
     13   AppleObjCRuntime.cpp \
     14   AppleObjCRuntimeV1.cpp \
     15   AppleObjCRuntimeV2.cpp \
     16   AppleObjCTrampolineHandler.cpp \
     17   AppleObjCTypeVendor.cpp \
     18   AppleThreadPlanStepThroughObjCTrampoline.cpp
     19 
     20 LOCAL_SRC_FILES := $(lldb_PluginLanguageRuntimeObjCAppleObjCRuntime_SRC_FILES)
     21 
     22 LOCAL_MODULE:= liblldbPluginLanguageRuntimeObjCAppleObjCRuntime
     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