Home | History | Annotate | Download | only in AST
      1 LOCAL_PATH:= $(call my-dir)
      2 
      3 # For the host only
      4 # =====================================================
      5 include $(CLEAR_VARS)
      6 include $(CLEAR_TBLGEN_VARS)
      7 
      8 TBLGEN_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 
     18 clang_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 	Mangle.cpp	\
     45 	MicrosoftCXXABI.cpp	\
     46 	MicrosoftMangle.cpp	\
     47 	NestedNameSpecifier.cpp	\
     48 	ParentMap.cpp	\
     49 	RecordLayout.cpp	\
     50 	RecordLayoutBuilder.cpp	\
     51 	SelectorLocationsKind.cpp \
     52 	Stmt.cpp	\
     53 	StmtDumper.cpp	\
     54 	StmtIterator.cpp	\
     55 	StmtPrinter.cpp	\
     56 	StmtProfile.cpp	\
     57 	StmtViz.cpp	\
     58 	TemplateBase.cpp	\
     59 	TemplateName.cpp	\
     60 	Type.cpp	\
     61 	TypeLoc.cpp	\
     62 	TypePrinter.cpp \
     63 	VTTBuilder.cpp \
     64 	VTableBuilder.cpp
     65 
     66 LOCAL_SRC_FILES := $(clang_ast_SRC_FILES)
     67 
     68 LOCAL_MODULE:= libclangAST
     69 LOCAL_MODULE_TAGS := optional
     70 
     71 LOCAL_MODULE_TAGS := optional
     72 
     73 include $(CLANG_HOST_BUILD_MK)
     74 include $(CLANG_TBLGEN_RULES_MK)
     75 include $(BUILD_HOST_STATIC_LIBRARY)
     76