mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-16 10:20:30 +00:00
999971f7f7
WITH_CLANG_EXTRAS nor WITH_LLDB is in effect).
17 lines
244 B
Makefile
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"
|