Home | History | Annotate | Line # | Download | only in libclangStaticAnalyzerCore
      1 #	$NetBSD: Makefile,v 1.2 2021/05/30 01:56:57 joerg Exp $
      2 
      3 LIB=	clangStaticAnalyzerCore
      4 
      5 .include <bsd.init.mk>
      6 
      7 .PATH: ${CLANG_SRCDIR}/lib/StaticAnalyzer/Core
      8 
      9 SRCS+=	AnalysisManager.cpp \
     10 	AnalyzerOptions.cpp \
     11 	APSIntType.cpp \
     12 	BasicValueFactory.cpp \
     13 	BlockCounter.cpp \
     14 	BugReporter.cpp \
     15 	BugReporterVisitors.cpp \
     16 	CallEvent.cpp \
     17 	CheckerContext.cpp \
     18 	Checker.cpp \
     19 	CheckerHelpers.cpp \
     20 	CheckerManager.cpp \
     21 	CheckerRegistryData.cpp \
     22 	CommonBugCategories.cpp \
     23 	ConstraintManager.cpp \
     24 	CoreEngine.cpp \
     25 	DynamicExtent.cpp \
     26 	DynamicType.cpp \
     27 	Environment.cpp \
     28 	ExplodedGraph.cpp \
     29 	ExprEngineCallAndReturn.cpp \
     30 	ExprEngineC.cpp \
     31 	ExprEngine.cpp \
     32 	ExprEngineCXX.cpp \
     33 	ExprEngineObjC.cpp \
     34 	FunctionSummary.cpp \
     35 	HTMLDiagnostics.cpp \
     36 	LoopUnrolling.cpp \
     37 	LoopWidening.cpp \
     38 	MemRegion.cpp \
     39 	PlistDiagnostics.cpp \
     40 	ProgramState.cpp \
     41 	RangeConstraintManager.cpp \
     42 	RangedConstraintManager.cpp \
     43 	RegionStore.cpp \
     44 	SarifDiagnostics.cpp \
     45 	SimpleConstraintManager.cpp \
     46 	SimpleSValBuilder.cpp \
     47 	SMTConstraintManager.cpp \
     48 	Store.cpp \
     49 	SValBuilder.cpp \
     50 	SVals.cpp \
     51 	SymbolManager.cpp \
     52 	TextDiagnostics.cpp \
     53 	WorkList.cpp
     54 
     55 .if defined(HOSTLIB)
     56 .include <bsd.hostlib.mk>
     57 .else
     58 .include <bsd.lib.mk>
     59 .endif
     60