branch. This brings us very close to the 3.0 release, which is expected in a week or two. MFC after: 1 week
29 lines
519 B
Makefile
29 lines
519 B
Makefile
# $FreeBSD$
|
|
|
|
LIB= clanganalysis
|
|
|
|
SRCDIR= tools/clang/lib/Analysis
|
|
SRCS= AnalysisContext.cpp \
|
|
CFG.cpp \
|
|
CFGReachabilityAnalysis.cpp \
|
|
CFGStmtMap.cpp \
|
|
CocoaConventions.cpp \
|
|
FormatString.cpp \
|
|
LiveVariables.cpp \
|
|
PrintfFormatString.cpp \
|
|
ProgramPoint.cpp \
|
|
PseudoConstantAnalysis.cpp \
|
|
ReachableCode.cpp \
|
|
ScanfFormatString.cpp \
|
|
ThreadSafety.cpp \
|
|
UninitializedValues.cpp
|
|
|
|
TGHDRS= AttrList \
|
|
Attrs \
|
|
DeclNodes \
|
|
DiagnosticAnalysisKinds \
|
|
DiagnosticCommonKinds \
|
|
StmtNodes
|
|
|
|
.include "../clang.lib.mk"
|