34cdd77646
clang-tblgen and clang itself built.
60 lines
1.1 KiB
Makefile
60 lines
1.1 KiB
Makefile
# $FreeBSD$
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
LIB= clangstaticanalyzercore
|
|
|
|
SRCDIR= tools/clang/lib/StaticAnalyzer/Core
|
|
SRCS= APSIntType.cpp \
|
|
AnalysisManager.cpp \
|
|
AnalyzerOptions.cpp \
|
|
BasicValueFactory.cpp \
|
|
BlockCounter.cpp \
|
|
BugReporter.cpp \
|
|
BugReporterVisitors.cpp \
|
|
CallEvent.cpp \
|
|
Checker.cpp \
|
|
CheckerContext.cpp \
|
|
CheckerHelpers.cpp \
|
|
CheckerManager.cpp \
|
|
CheckerRegistry.cpp \
|
|
CommonBugCategories.cpp \
|
|
ConstraintManager.cpp \
|
|
CoreEngine.cpp \
|
|
DynamicTypeMap.cpp \
|
|
Environment.cpp \
|
|
ExplodedGraph.cpp \
|
|
ExprEngine.cpp \
|
|
ExprEngineC.cpp \
|
|
ExprEngineCXX.cpp \
|
|
ExprEngineCallAndReturn.cpp \
|
|
ExprEngineObjC.cpp \
|
|
FunctionSummary.cpp \
|
|
HTMLDiagnostics.cpp \
|
|
IssueHash.cpp \
|
|
LoopWidening.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
|
|
|
|
TGHDRS= AttrList \
|
|
Attrs \
|
|
CommentCommandList \
|
|
CommentNodes \
|
|
DeclNodes \
|
|
DiagnosticCommonKinds \
|
|
DiagnosticFrontendKinds \
|
|
StmtNodes
|
|
|
|
.include "../clang.lib.mk"
|