Makefile revision 263508
1# $FreeBSD: stable/10/lib/clang/libclangsema/Makefile 263508 2014-03-21 17:53:59Z dim $
2
3.include <bsd.own.mk>
4
5LIB=	clangsema
6
7SRCDIR=	tools/clang/lib/Sema
8SRCS=	AnalysisBasedWarnings.cpp \
9	AttributeList.cpp \
10	CodeCompleteConsumer.cpp \
11	DeclSpec.cpp \
12	DelayedDiagnostic.cpp \
13	IdentifierResolver.cpp \
14	JumpDiagnostics.cpp \
15	MultiplexExternalSemaSource.cpp \
16	Scope.cpp \
17	ScopeInfo.cpp \
18	Sema.cpp \
19	SemaAccess.cpp \
20	SemaAttr.cpp \
21	SemaCXXScopeSpec.cpp \
22	SemaCast.cpp \
23	SemaChecking.cpp \
24	SemaCodeComplete.cpp \
25	SemaConsumer.cpp \
26	SemaDecl.cpp \
27	SemaDeclAttr.cpp \
28	SemaDeclCXX.cpp \
29	SemaDeclObjC.cpp \
30	SemaExceptionSpec.cpp \
31	SemaExpr.cpp \
32	SemaExprCXX.cpp \
33	SemaExprMember.cpp \
34	SemaExprObjC.cpp \
35	SemaFixItUtils.cpp \
36	SemaInit.cpp \
37	SemaLambda.cpp \
38	SemaLookup.cpp \
39	SemaObjCProperty.cpp \
40	SemaOpenMP.cpp \
41	SemaOverload.cpp \
42	SemaPseudoObject.cpp \
43	SemaStmt.cpp \
44	SemaStmtAsm.cpp \
45	SemaStmtAttr.cpp \
46	SemaTemplate.cpp \
47	SemaTemplateDeduction.cpp \
48	SemaTemplateInstantiate.cpp \
49	SemaTemplateInstantiateDecl.cpp \
50	SemaTemplateVariadic.cpp \
51	SemaType.cpp \
52	TargetAttributesSema.cpp \
53	TypeLocBuilder.cpp
54
55TGHDRS=	AttrList \
56	AttrParsedAttrImpl \
57	AttrParsedAttrKinds \
58	AttrParsedAttrList \
59	AttrSpellingListIndex \
60	AttrTemplateInstantiate \
61	Attrs \
62	CommentCommandList \
63	CommentNodes \
64	DeclNodes \
65	DiagnosticASTKinds \
66	DiagnosticCommentKinds \
67	DiagnosticCommonKinds \
68	DiagnosticParseKinds \
69	DiagnosticSemaKinds \
70	StmtNodes \
71	arm_neon
72
73.include "../clang.lib.mk"
74