aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorDimitry Andric <dim@FreeBSD.org>2016-08-25 21:29:16 +0000
committerDimitry Andric <dim@FreeBSD.org>2016-08-25 21:29:16 +0000
commite9c25f21083a601b3e38689c6ed2a25ae1f5e046 (patch)
tree62b1bfe732fc08446aea55658d7732488299ca53 /lib
parentdf96a70f74f4762ea10c1a5b301120777ccc2582 (diff)
Notes
Diffstat (limited to 'lib')
-rw-r--r--lib/clang/libclanganalysis/Makefile11
-rw-r--r--lib/clang/libllvmsupport/Makefile5
2 files changed, 11 insertions, 5 deletions
diff --git a/lib/clang/libclanganalysis/Makefile b/lib/clang/libclanganalysis/Makefile
index 66e7248f23add..2967440e9a8b1 100644
--- a/lib/clang/libclanganalysis/Makefile
+++ b/lib/clang/libclanganalysis/Makefile
@@ -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
diff --git a/lib/clang/libllvmsupport/Makefile b/lib/clang/libllvmsupport/Makefile
index 30695a1ff19eb..51543bffc7902 100644
--- a/lib/clang/libllvmsupport/Makefile
+++ b/lib/clang/libllvmsupport/Makefile
@@ -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 \