blob: 60bc98107049a8f0c7dc9b2346ce3583b5c858a8 [file] [log] [blame]
Logan150e0ef2011-01-19 10:29:26 +08001LOCAL_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 := \
Stephen Hines176edba2014-12-01 14:53:08 -080013 DeclNodes.inc \
Logan150e0ef2011-01-19 10:29:26 +080014 DiagnosticCommonKinds.inc \
15 DiagnosticFrontendKinds.inc \
Stephen Hines176edba2014-12-01 14:53:08 -080016 CC1Options.inc \
17 CommentCommandList.inc \
18 StmtNodes.inc
Logan150e0ef2011-01-19 10:29:26 +080019
20clang_frontend_tool_SRC_FILES := \
21 ExecuteCompilerInvocation.cpp
22
Stephen Hines651f13c2014-04-23 16:59:28 -070023LOCAL_CFLAGS += -DCLANG_ENABLE_STATIC_ANALYZER
24LOCAL_CFLAGS += -DCLANG_ENABLE_REWRITER
25
Logan150e0ef2011-01-19 10:29:26 +080026LOCAL_SRC_FILES := $(clang_frontend_tool_SRC_FILES)
27
28include $(CLANG_HOST_BUILD_MK)
29include $(CLANG_TBLGEN_RULES_MK)
30include $(BUILD_HOST_STATIC_LIBRARY)