1LOCAL_PATH:= $(call my-dir) 2 3# For the host only 4# ===================================================== 5include $(CLEAR_VARS) 6include $(CLEAR_TBLGEN_VARS) 7 8LOCAL_MODULE:= libclangFrontendTool 9 10LOCAL_MODULE_TAGS := optional 11 12TBLGEN_TABLES := \ 13 DiagnosticCommonKinds.inc \ 14 DiagnosticFrontendKinds.inc \ 15 CC1Options.inc 16 17clang_frontend_tool_SRC_FILES := \ 18 ExecuteCompilerInvocation.cpp 19 20LOCAL_SRC_FILES := $(clang_frontend_tool_SRC_FILES) 21 22include $(CLANG_HOST_BUILD_MK) 23include $(CLANG_TBLGEN_RULES_MK) 24include $(BUILD_HOST_STATIC_LIBRARY) 25