e580952d8a
Approved-by: rpaulo (mentor)
55 lines
916 B
Makefile
55 lines
916 B
Makefile
# $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"
|