opnsense-src/lib/clang/libllvmvectorize/Makefile
Dimitry Andric 999971f7f7 Minimize the number of files compiled for clang only (e.g. when neither
WITH_CLANG_EXTRAS nor WITH_LLDB is in effect).
2015-09-06 22:02:13 +00:00

18 lines
262 B
Makefile

# $FreeBSD$
.include <src.opts.mk>
LIB= llvmvectorize
SRCDIR= lib/Transforms/Vectorize
SRCS= BBVectorize.cpp \
LoopVectorize.cpp \
SLPVectorizer.cpp
.if ${MK_CLANG_EXTRAS} != "no"
SRCS+= Vectorize.cpp
.endif
TGHDRS= Intrinsics
.include "../clang.lib.mk"