fe6d24a2c1
WITH_CLANG_EXTRAS nor WITH_LLDB is in effect).
17 lines
282 B
Makefile
17 lines
282 B
Makefile
# $FreeBSD$
|
|
|
|
.include <src.opts.mk>
|
|
|
|
LIB= llvmmcdisassembler
|
|
|
|
SRCDIR= lib/MC/MCDisassembler
|
|
SRCS= Disassembler.cpp \
|
|
MCRelocationInfo.cpp
|
|
|
|
.if ${MK_CLANG_EXTRAS} != "no" || ${MK_LLDB} != "no"
|
|
SRCS+= MCDisassembler.cpp \
|
|
MCExternalSymbolizer.cpp
|
|
.endif
|
|
|
|
.include "../clang.lib.mk"
|