mirror of
https://git.FreeBSD.org/src.git
synced 2025-01-07 13:14:51 +00:00
7ae0e2c9f0
Benjamin Kramer and Joerg Sonnenberger for their input and fixes.
33 lines
598 B
Makefile
33 lines
598 B
Makefile
# $FreeBSD$
|
|
|
|
LIB= clanganalysis
|
|
|
|
SRCDIR= tools/clang/lib/Analysis
|
|
SRCS= AnalysisDeclContext.cpp \
|
|
CallGraph.cpp \
|
|
CFG.cpp \
|
|
CFGReachabilityAnalysis.cpp \
|
|
CFGStmtMap.cpp \
|
|
CocoaConventions.cpp \
|
|
Dominators.cpp \
|
|
FormatString.cpp \
|
|
LiveVariables.cpp \
|
|
PostOrderCFGView.cpp \
|
|
PrintfFormatString.cpp \
|
|
ProgramPoint.cpp \
|
|
PseudoConstantAnalysis.cpp \
|
|
ReachableCode.cpp \
|
|
ScanfFormatString.cpp \
|
|
ThreadSafety.cpp \
|
|
UninitializedValues.cpp
|
|
|
|
TGHDRS= AttrList \
|
|
Attrs \
|
|
CommentNodes \
|
|
DeclNodes \
|
|
DiagnosticAnalysisKinds \
|
|
DiagnosticCommonKinds \
|
|
StmtNodes
|
|
|
|
.include "../clang.lib.mk"
|