freebsd-dev/lib/clang/Makefile
Rui Paulo e5e203a468 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.
2010-10-30 16:53:42 +00:00

58 lines
1.0 KiB
Makefile

# $FreeBSD$
.if !make(install)
SUBDIR= libclanganalysis \
libclangast \
libclangbasic \
libclangchecker \
libclangcodegen \
libclangdriver \
libclangindex \
libclangfrontend \
libclangfrontendtool \
libclanglex \
libclangparse \
libclangrewrite \
libclangsema \
libclangserialization \
\
libllvmanalysis \
libllvmasmparser \
libllvmasmprinter \
libllvmbitreader \
libllvmbitwriter \
libllvmcodegen \
libllvminstcombine \
libllvmcore \
libllvmipa \
libllvmipo \
libllvmmc \
libllvmmcparser \
libllvmscalaropts \
libllvmselectiondag \
libllvmsupport \
libllvmsystem \
libllvmtarget \
libllvmtransformutils \
\
libllvmarmasmparser \
libllvmarmasmprinter \
libllvmarmcodegen \
libllvmarminfo \
libllvmmipsasmprinter \
libllvmmipscodegen \
libllvmmipsinfo \
libllvmpowerpcasmprinter \
libllvmpowerpccodegen \
libllvmpowerpcinfo \
libllvmx86asmparser \
libllvmx86asmprinter \
libllvmx86codegen \
libllvmx86disassembler \
libllvmx86info
.endif
SUBDIR+= include
.include <bsd.subdir.mk>