7ae0e2c9f0
Benjamin Kramer and Joerg Sonnenberger for their input and fixes.
52 lines
1008 B
Makefile
52 lines
1008 B
Makefile
# $FreeBSD$
|
|
|
|
LIB= clangstaticanalyzercore
|
|
|
|
SRCDIR= tools/clang/lib/StaticAnalyzer/Core
|
|
SRCS= AnalysisManager.cpp \
|
|
APSIntType.cpp \
|
|
BasicConstraintManager.cpp \
|
|
BasicValueFactory.cpp \
|
|
BlockCounter.cpp \
|
|
BugReporter.cpp \
|
|
BugReporterVisitors.cpp \
|
|
CallEvent.cpp \
|
|
Checker.cpp \
|
|
CheckerContext.cpp \
|
|
CheckerHelpers.cpp \
|
|
CheckerManager.cpp \
|
|
CheckerRegistry.cpp \
|
|
CoreEngine.cpp \
|
|
Environment.cpp \
|
|
ExplodedGraph.cpp \
|
|
ExprEngine.cpp \
|
|
ExprEngineC.cpp \
|
|
ExprEngineCXX.cpp \
|
|
ExprEngineCallAndReturn.cpp \
|
|
ExprEngineObjC.cpp \
|
|
FunctionSummary.cpp \
|
|
HTMLDiagnostics.cpp \
|
|
MemRegion.cpp \
|
|
PathDiagnostic.cpp \
|
|
PlistDiagnostics.cpp \
|
|
ProgramState.cpp \
|
|
RangeConstraintManager.cpp \
|
|
RegionStore.cpp \
|
|
SValBuilder.cpp \
|
|
SVals.cpp \
|
|
SimpleConstraintManager.cpp \
|
|
SimpleSValBuilder.cpp \
|
|
Store.cpp \
|
|
SubEngine.cpp \
|
|
SymbolManager.cpp \
|
|
TextPathDiagnostics.cpp
|
|
|
|
TGHDRS= AttrList \
|
|
Attrs \
|
|
CommentNodes \
|
|
DeclNodes \
|
|
DiagnosticCommonKinds \
|
|
StmtNodes
|
|
|
|
.include "../clang.lib.mk"
|