1# $FreeBSD$
2
3.include <bsd.own.mk>
4
5LIB=	clangast
6
7SRCDIR=	tools/clang/lib/AST
8SRCS=	APValue.cpp \
9	ASTConsumer.cpp \
10	ASTContext.cpp \
11	ASTDiagnostic.cpp \
12	ASTDumper.cpp \
13	ASTImporter.cpp \
14	AttrImpl.cpp \
15	CXXInheritance.cpp \
16	Comment.cpp \
17	CommentBriefParser.cpp \
18	CommentCommandTraits.cpp \
19	CommentLexer.cpp \
20	CommentParser.cpp \
21	CommentSema.cpp \
22	Decl.cpp \
23	DeclBase.cpp \
24	DeclCXX.cpp \
25	DeclFriend.cpp \
26	DeclGroup.cpp \
27	DeclObjC.cpp \
28	DeclOpenMP.cpp \
29	DeclPrinter.cpp \
30	DeclTemplate.cpp \
31	DeclarationName.cpp \
32	DumpXML.cpp \
33	Expr.cpp \
34	ExprCXX.cpp \
35	ExprClassification.cpp \
36	ExprConstant.cpp \
37	ExternalASTSource.cpp \
38	InheritViz.cpp \
39	ItaniumCXXABI.cpp \
40	ItaniumMangle.cpp \
41	LambdaMangleContext.cpp \
42	Mangle.cpp \
43	MicrosoftCXXABI.cpp \
44	MicrosoftMangle.cpp \
45	NSAPI.cpp \
46	NestedNameSpecifier.cpp \
47	ParentMap.cpp \
48	RawCommentList.cpp \
49	RecordLayout.cpp \
50	RecordLayoutBuilder.cpp \
51	SelectorLocationsKind.cpp \
52	Stmt.cpp \
53	StmtIterator.cpp \
54	StmtPrinter.cpp \
55	StmtProfile.cpp \
56	StmtViz.cpp \
57	TemplateBase.cpp \
58	TemplateName.cpp \
59	Type.cpp \
60	TypeLoc.cpp \
61	TypePrinter.cpp \
62	VTTBuilder.cpp \
63	VTableBuilder.cpp
64
65TGHDRS=	AttrDump \
66	AttrImpl \
67	AttrList \
68	Attrs \
69	CommentCommandInfo \
70	CommentCommandList \
71	CommentHTMLNamedCharacterReferences \
72	CommentHTMLTags \
73	CommentHTMLTagsProperties \
74	CommentNodes \
75	DeclNodes \
76	DiagnosticASTKinds \
77	DiagnosticCommentKinds \
78	DiagnosticCommonKinds \
79	DiagnosticSemaKinds \
80	StmtNodes
81
82.include "../clang.lib.mk"
83