xref: /minix3/external/bsd/llvm/lib/libclangAnalysis/Makefile (revision 0a6a1f1d05b60e214de2f05a7310ddd1f0e590e7)
1*0a6a1f1dSLionel Sambuc#	$NetBSD: Makefile,v 1.13 2015/01/29 20:41:36 joerg Exp $
2f4a2713aSLionel Sambuc
3f4a2713aSLionel SambucLIB=	clangAnalysis
4f4a2713aSLionel Sambuc
5f4a2713aSLionel Sambuc.include <bsd.init.mk>
6f4a2713aSLionel Sambuc
7f4a2713aSLionel Sambuc.PATH: ${CLANG_SRCDIR}/lib/Analysis
8f4a2713aSLionel Sambuc
9f4a2713aSLionel SambucSRCS+=	AnalysisDeclContext.cpp \
10f4a2713aSLionel Sambuc	BodyFarm.cpp \
11f4a2713aSLionel Sambuc	CFG.cpp \
12f4a2713aSLionel Sambuc	CFGReachabilityAnalysis.cpp \
13f4a2713aSLionel Sambuc	CFGStmtMap.cpp \
14f4a2713aSLionel Sambuc	CallGraph.cpp \
15f4a2713aSLionel Sambuc	CocoaConventions.cpp \
16*0a6a1f1dSLionel Sambuc	CodeInjector.cpp \
17f4a2713aSLionel Sambuc	Consumed.cpp \
18f4a2713aSLionel Sambuc	Dominators.cpp \
19f4a2713aSLionel Sambuc	FormatString.cpp \
20f4a2713aSLionel Sambuc	LiveVariables.cpp \
21f4a2713aSLionel Sambuc	ObjCNoReturn.cpp \
22f4a2713aSLionel Sambuc	PostOrderCFGView.cpp \
23f4a2713aSLionel Sambuc	ProgramPoint.cpp \
24f4a2713aSLionel Sambuc	PrintfFormatString.cpp \
25f4a2713aSLionel Sambuc	PseudoConstantAnalysis.cpp \
26f4a2713aSLionel Sambuc	ReachableCode.cpp \
27f4a2713aSLionel Sambuc	ScanfFormatString.cpp \
28f4a2713aSLionel Sambuc	ThreadSafety.cpp \
29*0a6a1f1dSLionel Sambuc	ThreadSafetyCommon.cpp \
30*0a6a1f1dSLionel Sambuc	ThreadSafetyLogical.cpp \
31*0a6a1f1dSLionel Sambuc	ThreadSafetyTIL.cpp \
32f4a2713aSLionel Sambuc	UninitializedValues.cpp
33f4a2713aSLionel Sambuc
34f4a2713aSLionel Sambuc.if defined(HOSTLIB)
35f4a2713aSLionel Sambuc.include <bsd.hostlib.mk>
36f4a2713aSLionel Sambuc.else
37f4a2713aSLionel Sambuc.include <bsd.lib.mk>
38f4a2713aSLionel Sambuc.endif
39