When the make target is 'install', don't descend into the clang

libraries subdirectories since there's nothing to do there. This saves
us quite a few seconds off installworld, esp. if the disk I/O is slow.
This commit is contained in:
Rui Paulo 2010-10-30 16:53:42 +00:00
parent 812b0fb7ee
commit e5e203a468
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=214562

View File

@ -1,5 +1,6 @@
# $FreeBSD$
.if !make(install)
SUBDIR= libclanganalysis \
libclangast \
libclangbasic \
@ -48,8 +49,9 @@ SUBDIR= libclanganalysis \
libllvmx86asmprinter \
libllvmx86codegen \
libllvmx86disassembler \
libllvmx86info \
\
include
libllvmx86info
.endif
SUBDIR+= include
.include <bsd.subdir.mk>