30 lines
697 B
Makefile
30 lines
697 B
Makefile
LOCAL_PATH:= $(call my-dir)
|
|
|
|
# For the host only
|
|
# =====================================================
|
|
include $(CLEAR_VARS)
|
|
include $(CLEAR_TBLGEN_VARS)
|
|
|
|
LOCAL_MODULE:= libclangFrontendTool
|
|
|
|
LOCAL_MODULE_TAGS := optional
|
|
|
|
TBLGEN_TABLES := \
|
|
DeclNodes.inc \
|
|
DiagnosticCommonKinds.inc \
|
|
DiagnosticFrontendKinds.inc \
|
|
CC1Options.inc \
|
|
CommentCommandList.inc \
|
|
StmtNodes.inc
|
|
|
|
clang_frontend_tool_SRC_FILES := \
|
|
ExecuteCompilerInvocation.cpp
|
|
|
|
LOCAL_CFLAGS += -DCLANG_ENABLE_STATIC_ANALYZER
|
|
LOCAL_CFLAGS += -DCLANG_ENABLE_REWRITER
|
|
|
|
LOCAL_SRC_FILES := $(clang_frontend_tool_SRC_FILES)
|
|
|
|
include $(CLANG_HOST_BUILD_MK)
|
|
include $(CLANG_TBLGEN_RULES_MK)
|
|
include $(BUILD_HOST_STATIC_LIBRARY)
|