1*f4a2713aSLionel Sambuc# $NetBSD: Makefile,v 1.14 2013/10/14 01:37:39 joerg Exp $ 2*f4a2713aSLionel Sambuc 3*f4a2713aSLionel SambucLIB= clangStaticAnalyzerCore 4*f4a2713aSLionel Sambuc 5*f4a2713aSLionel Sambuc.include <bsd.init.mk> 6*f4a2713aSLionel Sambuc 7*f4a2713aSLionel Sambuc.PATH: ${CLANG_SRCDIR}/lib/StaticAnalyzer/Core 8*f4a2713aSLionel Sambuc 9*f4a2713aSLionel SambucSRCS+= APSIntType.cpp \ 10*f4a2713aSLionel Sambuc AnalysisManager.cpp \ 11*f4a2713aSLionel Sambuc AnalyzerOptions.cpp \ 12*f4a2713aSLionel Sambuc BasicValueFactory.cpp \ 13*f4a2713aSLionel Sambuc BlockCounter.cpp \ 14*f4a2713aSLionel Sambuc BugReporter.cpp \ 15*f4a2713aSLionel Sambuc BugReporterVisitors.cpp \ 16*f4a2713aSLionel Sambuc CallEvent.cpp \ 17*f4a2713aSLionel Sambuc Checker.cpp \ 18*f4a2713aSLionel Sambuc CheckerContext.cpp \ 19*f4a2713aSLionel Sambuc CheckerHelpers.cpp \ 20*f4a2713aSLionel Sambuc CheckerManager.cpp \ 21*f4a2713aSLionel Sambuc CheckerRegistry.cpp \ 22*f4a2713aSLionel Sambuc CommonBugCategories.cpp \ 23*f4a2713aSLionel Sambuc ConstraintManager.cpp \ 24*f4a2713aSLionel Sambuc CoreEngine.cpp \ 25*f4a2713aSLionel Sambuc Environment.cpp \ 26*f4a2713aSLionel Sambuc ExplodedGraph.cpp \ 27*f4a2713aSLionel Sambuc ExprEngine.cpp \ 28*f4a2713aSLionel Sambuc ExprEngineC.cpp \ 29*f4a2713aSLionel Sambuc ExprEngineCXX.cpp \ 30*f4a2713aSLionel Sambuc ExprEngineCallAndReturn.cpp \ 31*f4a2713aSLionel Sambuc ExprEngineObjC.cpp \ 32*f4a2713aSLionel Sambuc FunctionSummary.cpp \ 33*f4a2713aSLionel Sambuc HTMLDiagnostics.cpp \ 34*f4a2713aSLionel Sambuc MemRegion.cpp \ 35*f4a2713aSLionel Sambuc PathDiagnostic.cpp \ 36*f4a2713aSLionel Sambuc PlistDiagnostics.cpp \ 37*f4a2713aSLionel Sambuc ProgramState.cpp \ 38*f4a2713aSLionel Sambuc RangeConstraintManager.cpp \ 39*f4a2713aSLionel Sambuc RegionStore.cpp \ 40*f4a2713aSLionel Sambuc SimpleConstraintManager.cpp \ 41*f4a2713aSLionel Sambuc SimpleSValBuilder.cpp \ 42*f4a2713aSLionel Sambuc Store.cpp \ 43*f4a2713aSLionel Sambuc SValBuilder.cpp \ 44*f4a2713aSLionel Sambuc SVals.cpp \ 45*f4a2713aSLionel Sambuc SubEngine.cpp \ 46*f4a2713aSLionel Sambuc SymbolManager.cpp 47*f4a2713aSLionel Sambuc 48*f4a2713aSLionel Sambuc.if defined(HOSTLIB) 49*f4a2713aSLionel Sambuc.include <bsd.hostlib.mk> 50*f4a2713aSLionel Sambuc.else 51*f4a2713aSLionel Sambuc.include <bsd.lib.mk> 52*f4a2713aSLionel Sambuc.endif 53