diff options
Diffstat (limited to 'lib/clang/libclangast/Makefile')
-rw-r--r-- | lib/clang/libclangast/Makefile | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/lib/clang/libclangast/Makefile b/lib/clang/libclangast/Makefile new file mode 100644 index 0000000..7e8731f --- /dev/null +++ b/lib/clang/libclangast/Makefile @@ -0,0 +1,54 @@ +# $FreeBSD$ + +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 \ + ExprClassification.cpp \ + ExprConstant.cpp \ + FullExpr.cpp \ + InheritViz.cpp \ + ItaniumCXXABI.cpp \ + MicrosoftCXXABI.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= AttrImpl \ + AttrList \ + Attrs \ + DeclNodes \ + DiagnosticASTKinds \ + DiagnosticCommonKinds \ + StmtNodes + +.include "../clang.lib.mk" |