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

View File

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