diff options
Diffstat (limited to 'lib/clang/libclangast')
-rw-r--r-- | lib/clang/libclangast/Makefile | 54 |
1 files changed, 43 insertions, 11 deletions
diff --git a/lib/clang/libclangast/Makefile b/lib/clang/libclangast/Makefile index 2061939..06cb000 100644 --- a/lib/clang/libclangast/Makefile +++ b/lib/clang/libclangast/Makefile @@ -3,17 +3,49 @@ LIB= clangast SRCDIR= tools/clang/lib/AST -SRCS= APValue.cpp ASTConsumer.cpp ASTContext.cpp ASTDiagnostic.cpp \ - ASTImporter.cpp AttrImpl.cpp CXXInheritance.cpp Decl.cpp \ - DeclBase.cpp DeclCXX.cpp DeclFriend.cpp DeclGroup.cpp \ - DeclObjC.cpp DeclPrinter.cpp DeclTemplate.cpp \ - DeclarationName.cpp Expr.cpp ExprCXX.cpp ExprConstant.cpp \ - FullExpr.cpp InheritViz.cpp NestedNameSpecifier.cpp \ - ParentMap.cpp RecordLayout.cpp RecordLayoutBuilder.cpp \ - Stmt.cpp StmtDumper.cpp StmtIterator.cpp StmtPrinter.cpp \ - StmtProfile.cpp StmtViz.cpp TemplateBase.cpp TemplateName.cpp \ - Type.cpp TypeLoc.cpp TypePrinter.cpp +SRCS= APValue.cpp \ + ASTConsumer.cpp \ + ASTContext.cpp \ + ASTDiagnostic.cpp \ + ASTImporter.cpp \ + AttrImpl.cpp \ + CXXInheritance.cpp \ + Decl.cpp \ + DeclBase.cpp \ + DeclCXX.cpp \ + DeclFriend.cpp \ + DeclGroup.cpp \ + DeclObjC.cpp \ + DeclPrinter.cpp \ + DeclTemplate.cpp \ + DeclarationName.cpp \ + Expr.cpp \ + ExprCXX.cpp \ + ExprClassification.cpp \ + ExprConstant.cpp \ + FullExpr.cpp \ + InheritViz.cpp \ + NestedNameSpecifier.cpp \ + ParentMap.cpp \ + RecordLayout.cpp \ + RecordLayoutBuilder.cpp \ + Stmt.cpp \ + StmtDumper.cpp \ + StmtIterator.cpp \ + StmtPrinter.cpp \ + StmtProfile.cpp \ + StmtViz.cpp \ + TemplateBase.cpp \ + TemplateName.cpp \ + Type.cpp \ + TypeLoc.cpp \ + TypePrinter.cpp -TGHDRS= DiagnosticASTKinds DiagnosticCommonKinds StmtNodes +TGHDRS= AttrList \ + Attrs \ + DeclNodes \ + DiagnosticASTKinds \ + DiagnosticCommonKinds \ + StmtNodes .include "../clang.lib.mk" |