Move some more files under MK_CLANG_FULL.

This commit is contained in:
Dimitry Andric 2016-08-25 21:29:16 +00:00
parent df96a70f74
commit e9c25f2108
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/projects/clang390-import/; revision=304820
2 changed files with 11 additions and 5 deletions

View File

@ -10,17 +10,13 @@ SRCS= AnalysisDeclContext.cpp \
CFG.cpp \ CFG.cpp \
CFGReachabilityAnalysis.cpp \ CFGReachabilityAnalysis.cpp \
CFGStmtMap.cpp \ CFGStmtMap.cpp \
CallGraph.cpp \
CocoaConventions.cpp \ CocoaConventions.cpp \
CodeInjector.cpp \
Consumed.cpp \ Consumed.cpp \
Dominators.cpp \
FormatString.cpp \ FormatString.cpp \
LiveVariables.cpp \ LiveVariables.cpp \
ObjCNoReturn.cpp \ ObjCNoReturn.cpp \
PostOrderCFGView.cpp \ PostOrderCFGView.cpp \
PrintfFormatString.cpp \ PrintfFormatString.cpp \
ProgramPoint.cpp \
PseudoConstantAnalysis.cpp \ PseudoConstantAnalysis.cpp \
ReachableCode.cpp \ ReachableCode.cpp \
ScanfFormatString.cpp \ ScanfFormatString.cpp \
@ -29,6 +25,13 @@ SRCS= AnalysisDeclContext.cpp \
ThreadSafetyTIL.cpp \ ThreadSafetyTIL.cpp \
UninitializedValues.cpp UninitializedValues.cpp
.if ${MK_CLANG_FULL} != "no"
SRCS+= CallGraph.cpp \
CodeInjector.cpp \
Dominators.cpp \
ProgramPoint.cpp
.endif
.if ${MK_CLANG_EXTRAS} != "no" .if ${MK_CLANG_EXTRAS} != "no"
SRCS+= ThreadSafetyLogical.cpp SRCS+= ThreadSafetyLogical.cpp
.endif .endif

View File

@ -35,7 +35,6 @@ SRCS= APFloat.cpp \
Host.cpp \ Host.cpp \
IntEqClasses.cpp \ IntEqClasses.cpp \
IntervalMap.cpp \ IntervalMap.cpp \
IntrusiveRefCntPtr.cpp \
JamCRC.cpp \ JamCRC.cpp \
LEB128.cpp \ LEB128.cpp \
LineIterator.cpp \ LineIterator.cpp \
@ -93,6 +92,10 @@ SRCS= APFloat.cpp \
regfree.c \ regfree.c \
regstrlcpy.c regstrlcpy.c
.if ${MK_CLANG_FULL} != "no"
SRCS+= IntrusiveRefCntPtr.cpp
.endif
.if ${MK_CLANG_EXTRAS} != "no" .if ${MK_CLANG_EXTRAS} != "no"
SRCS+= ARMWinEH.cpp \ SRCS+= ARMWinEH.cpp \
COM.cpp \ COM.cpp \