1LOCAL_PATH:= $(call my-dir) 2 3# For the host only 4# ===================================================== 5include $(CLEAR_VARS) 6include $(CLEAR_TBLGEN_VARS) 7 8TBLGEN_TABLES := \ 9 AttrImpl.inc \ 10 AttrList.inc \ 11 Attrs.inc \ 12 DeclNodes.inc \ 13 DiagnosticASTKinds.inc \ 14 DiagnosticCommonKinds.inc \ 15 DiagnosticSemaKinds.inc \ 16 StmtNodes.inc 17 18clang_ast_SRC_FILES := \ 19 APValue.cpp \ 20 ASTConsumer.cpp \ 21 ASTContext.cpp \ 22 ASTDiagnostic.cpp \ 23 ASTImporter.cpp \ 24 AttrImpl.cpp \ 25 CXXInheritance.cpp \ 26 Decl.cpp \ 27 DeclarationName.cpp \ 28 DeclBase.cpp \ 29 DeclCXX.cpp \ 30 DeclFriend.cpp \ 31 DeclGroup.cpp \ 32 DeclObjC.cpp \ 33 DeclPrinter.cpp \ 34 DeclTemplate.cpp \ 35 DumpXML.cpp \ 36 Expr.cpp \ 37 ExprClassification.cpp \ 38 ExprConstant.cpp \ 39 ExprCXX.cpp \ 40 ExternalASTSource.cpp \ 41 InheritViz.cpp \ 42 ItaniumCXXABI.cpp \ 43 ItaniumMangle.cpp \ 44 LambdaMangleContext.cpp \ 45 Mangle.cpp \ 46 MicrosoftCXXABI.cpp \ 47 MicrosoftMangle.cpp \ 48 NestedNameSpecifier.cpp \ 49 NSAPI.cpp \ 50 ParentMap.cpp \ 51 RecordLayout.cpp \ 52 RecordLayoutBuilder.cpp \ 53 SelectorLocationsKind.cpp \ 54 Stmt.cpp \ 55 StmtDumper.cpp \ 56 StmtIterator.cpp \ 57 StmtPrinter.cpp \ 58 StmtProfile.cpp \ 59 StmtViz.cpp \ 60 TemplateBase.cpp \ 61 TemplateName.cpp \ 62 Type.cpp \ 63 TypeLoc.cpp \ 64 TypePrinter.cpp \ 65 VTTBuilder.cpp \ 66 VTableBuilder.cpp 67 68LOCAL_SRC_FILES := $(clang_ast_SRC_FILES) 69 70LOCAL_MODULE:= libclangAST 71LOCAL_MODULE_TAGS := optional 72 73LOCAL_MODULE_TAGS := optional 74 75include $(CLANG_HOST_BUILD_MK) 76include $(CLANG_TBLGEN_RULES_MK) 77include $(BUILD_HOST_STATIC_LIBRARY) 78