53 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			53 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| #	$NetBSD: Makefile,v 1.14 2013/10/14 01:37:39 joerg Exp $
 | |
| 
 | |
| LIB=	clangStaticAnalyzerCore
 | |
| 
 | |
| .include <bsd.init.mk>
 | |
| 
 | |
| .PATH: ${CLANG_SRCDIR}/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 \
 | |
| 	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 \
 | |
| 	SimpleConstraintManager.cpp \
 | |
| 	SimpleSValBuilder.cpp \
 | |
| 	Store.cpp \
 | |
| 	SValBuilder.cpp \
 | |
| 	SVals.cpp \
 | |
| 	SubEngine.cpp \
 | |
| 	SymbolManager.cpp
 | |
| 
 | |
| .if defined(HOSTLIB)
 | |
| .include <bsd.hostlib.mk>
 | |
| .else
 | |
| .include <bsd.lib.mk>
 | |
| .endif
 | 
