34 lines
643 B
Makefile
34 lines
643 B
Makefile
# $NetBSD: Makefile,v 1.9 2012/09/23 17:22:24 joerg Exp $
|
|
|
|
LIB= clangAnalysis
|
|
|
|
.include <bsd.init.mk>
|
|
|
|
.PATH: ${CLANG_SRCDIR}/lib/Analysis
|
|
|
|
SRCS+= AnalysisDeclContext.cpp \
|
|
BodyFarm.cpp \
|
|
CFG.cpp \
|
|
CFGReachabilityAnalysis.cpp \
|
|
CFGStmtMap.cpp \
|
|
CallGraph.cpp \
|
|
CocoaConventions.cpp \
|
|
Dominators.cpp \
|
|
FormatString.cpp \
|
|
LiveVariables.cpp \
|
|
ObjCNoReturn.cpp \
|
|
PostOrderCFGView.cpp \
|
|
ProgramPoint.cpp \
|
|
PrintfFormatString.cpp \
|
|
PseudoConstantAnalysis.cpp \
|
|
ReachableCode.cpp \
|
|
ScanfFormatString.cpp \
|
|
ThreadSafety.cpp \
|
|
UninitializedValues.cpp
|
|
|
|
.if defined(HOSTLIB)
|
|
.include <bsd.hostlib.mk>
|
|
.else
|
|
.include <bsd.lib.mk>
|
|
.endif
|