1LOCAL_PATH:= $(call my-dir) 2 3include $(CLEAR_VARS) 4include $(CLEAR_TBLGEN_VARS) 5 6TBLGEN_TABLES := \ 7 CommentCommandList.inc \ 8 DiagnosticCommonKinds.inc \ 9 DeclNodes.inc \ 10 StmtNodes.inc 11 12lldb_PluginLanguageRuntimeObjCAppleObjCRuntime_SRC_FILES := \ 13 AppleObjCRuntime.cpp \ 14 AppleObjCRuntimeV1.cpp \ 15 AppleObjCRuntimeV2.cpp \ 16 AppleObjCTrampolineHandler.cpp \ 17 AppleObjCTypeVendor.cpp \ 18 AppleThreadPlanStepThroughObjCTrampoline.cpp 19 20LOCAL_SRC_FILES := $(lldb_PluginLanguageRuntimeObjCAppleObjCRuntime_SRC_FILES) 21 22LOCAL_MODULE:= liblldbPluginLanguageRuntimeObjCAppleObjCRuntime 23LOCAL_MODULE_TAGS := optional 24 25include $(LLDB_BUILD_MK) 26include $(CLANG_VERSION_INC_MK) 27include $(CLANG_TBLGEN_RULES_MK) 28include $(BUILD_HOST_STATIC_LIBRARY) 29