2010-06-09 19:32:20 +00:00
|
|
|
# $FreeBSD$
|
|
|
|
|
2013-02-02 22:28:29 +00:00
|
|
|
.include <bsd.own.mk>
|
|
|
|
|
2010-06-09 19:32:20 +00:00
|
|
|
LIB= clangast
|
|
|
|
|
|
|
|
SRCDIR= tools/clang/lib/AST
|
2010-07-20 17:16:57 +00:00
|
|
|
SRCS= APValue.cpp \
|
|
|
|
ASTConsumer.cpp \
|
|
|
|
ASTContext.cpp \
|
|
|
|
ASTDiagnostic.cpp \
|
|
|
|
ASTImporter.cpp \
|
|
|
|
AttrImpl.cpp \
|
|
|
|
CXXInheritance.cpp \
|
2012-08-20 18:33:03 +00:00
|
|
|
Comment.cpp \
|
|
|
|
CommentBriefParser.cpp \
|
|
|
|
CommentCommandTraits.cpp \
|
|
|
|
CommentDumper.cpp \
|
|
|
|
CommentLexer.cpp \
|
|
|
|
CommentParser.cpp \
|
|
|
|
CommentSema.cpp \
|
2010-07-20 17:16:57 +00:00
|
|
|
Decl.cpp \
|
|
|
|
DeclBase.cpp \
|
|
|
|
DeclCXX.cpp \
|
|
|
|
DeclFriend.cpp \
|
|
|
|
DeclGroup.cpp \
|
|
|
|
DeclObjC.cpp \
|
|
|
|
DeclPrinter.cpp \
|
|
|
|
DeclTemplate.cpp \
|
|
|
|
DeclarationName.cpp \
|
2011-02-20 19:33:47 +00:00
|
|
|
DumpXML.cpp \
|
2010-07-20 17:16:57 +00:00
|
|
|
Expr.cpp \
|
|
|
|
ExprCXX.cpp \
|
|
|
|
ExprClassification.cpp \
|
|
|
|
ExprConstant.cpp \
|
2011-05-02 21:04:37 +00:00
|
|
|
ExternalASTSource.cpp \
|
2010-07-20 17:16:57 +00:00
|
|
|
InheritViz.cpp \
|
2010-09-20 16:43:17 +00:00
|
|
|
ItaniumCXXABI.cpp \
|
2011-02-20 19:33:47 +00:00
|
|
|
ItaniumMangle.cpp \
|
2012-04-16 21:23:25 +00:00
|
|
|
LambdaMangleContext.cpp \
|
2011-02-20 19:33:47 +00:00
|
|
|
Mangle.cpp \
|
2010-09-20 16:43:17 +00:00
|
|
|
MicrosoftCXXABI.cpp \
|
2011-02-20 19:33:47 +00:00
|
|
|
MicrosoftMangle.cpp \
|
2010-07-20 17:16:57 +00:00
|
|
|
NestedNameSpecifier.cpp \
|
2012-04-16 21:23:25 +00:00
|
|
|
NSAPI.cpp \
|
2010-07-20 17:16:57 +00:00
|
|
|
ParentMap.cpp \
|
2012-08-20 18:33:03 +00:00
|
|
|
RawCommentList.cpp \
|
2010-07-20 17:16:57 +00:00
|
|
|
RecordLayout.cpp \
|
|
|
|
RecordLayoutBuilder.cpp \
|
2011-10-22 14:08:43 +00:00
|
|
|
SelectorLocationsKind.cpp \
|
2010-07-20 17:16:57 +00:00
|
|
|
Stmt.cpp \
|
|
|
|
StmtDumper.cpp \
|
|
|
|
StmtIterator.cpp \
|
|
|
|
StmtPrinter.cpp \
|
|
|
|
StmtProfile.cpp \
|
|
|
|
StmtViz.cpp \
|
|
|
|
TemplateBase.cpp \
|
|
|
|
TemplateName.cpp \
|
|
|
|
Type.cpp \
|
|
|
|
TypeLoc.cpp \
|
2011-10-22 14:08:43 +00:00
|
|
|
TypePrinter.cpp \
|
|
|
|
VTTBuilder.cpp \
|
|
|
|
VTableBuilder.cpp
|
2010-06-09 19:32:20 +00:00
|
|
|
|
2010-09-20 16:43:17 +00:00
|
|
|
TGHDRS= AttrImpl \
|
|
|
|
AttrList \
|
2010-07-20 17:16:57 +00:00
|
|
|
Attrs \
|
2012-12-03 19:24:08 +00:00
|
|
|
CommentCommandInfo \
|
|
|
|
CommentHTMLTags \
|
|
|
|
CommentHTMLTagsProperties \
|
2012-08-20 18:33:03 +00:00
|
|
|
CommentNodes \
|
2010-07-20 17:16:57 +00:00
|
|
|
DeclNodes \
|
|
|
|
DiagnosticASTKinds \
|
2012-08-20 18:33:03 +00:00
|
|
|
DiagnosticCommentKinds \
|
2010-07-20 17:16:57 +00:00
|
|
|
DiagnosticCommonKinds \
|
2011-02-20 19:33:47 +00:00
|
|
|
DiagnosticSemaKinds \
|
2010-07-20 17:16:57 +00:00
|
|
|
StmtNodes
|
2010-06-09 19:32:20 +00:00
|
|
|
|
|
|
|
.include "../clang.lib.mk"
|