1LOCAL_PATH:= $(call my-dir) 2 3include $(CLEAR_VARS) 4include $(CLEAR_TBLGEN_VARS) 5 6TBLGEN_TABLES := \ 7 DiagnosticCommonKinds.inc \ 8 DeclNodes.inc \ 9 StmtNodes.inc 10 11lldb_PluginPlatformMacOSX_SRC_FILES := \ 12 PlatformDarwin.cpp \ 13 PlatformDarwinKernel.cpp \ 14 PlatformiOSSimulator.cpp \ 15 PlatformMacOSX.cpp \ 16 PlatformRemoteiOS.cpp 17 18LOCAL_SRC_FILES := $(lldb_PluginPlatformMacOSX_SRC_FILES) 19 20LOCAL_MODULE:= liblldbPluginPlatformMacOSX 21LOCAL_MODULE_TAGS := optional 22 23include $(LLDB_BUILD_MK) 24include $(CLANG_VERSION_INC_MK) 25include $(CLANG_TBLGEN_RULES_MK) 26include $(BUILD_HOST_STATIC_LIBRARY) 27