blob: 5e074d920368972ab259752eb735d03482a262dd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# $FreeBSD$
.include <bsd.own.mk>
LIB= clangstaticanalyzerfrontend
SRCDIR= tools/clang/lib/StaticAnalyzer/Frontend
SRCS= AnalysisConsumer.cpp \
CheckerRegistration.cpp \
FrontendActions.cpp \
ModelConsumer.cpp \
ModelInjector.cpp
TGHDRS= AttrList \
AttrParsedAttrList \
AttrVisitor \
Attrs \
Checkers \
CommentCommandList \
CommentNodes \
DeclNodes \
DiagnosticCommonKinds \
DiagnosticFrontendKinds \
StmtNodes
.include "../clang.lib.mk"
|