1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-16 10:20:30 +00:00
freebsd/lib/clang/libllvmbitwriter/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

17 lines
244 B
Makefile

# $FreeBSD$
.include <src.opts.mk>
LIB= llvmbitwriter
SRCDIR= lib/Bitcode/Writer
SRCS= BitcodeWriter.cpp \
BitcodeWriterPass.cpp \
ValueEnumerator.cpp
.if ${MK_CLANG_EXTRAS} != "no"
SRCS+= BitWriter.cpp
.endif
.include "../clang.lib.mk"