mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-25 11:37:56 +00:00
999971f7f7
WITH_CLANG_EXTRAS nor WITH_LLDB is in effect).
16 lines
210 B
Makefile
16 lines
210 B
Makefile
# $FreeBSD$
|
|
|
|
.include <src.opts.mk>
|
|
|
|
LIB= llvmmirparser
|
|
|
|
SRCDIR= lib/CodeGen/MIRParser
|
|
SRCS= MIParser.cpp \
|
|
MIRParser.cpp
|
|
|
|
.if ${MK_CLANG_EXTRAS} != "no"
|
|
SRCS+= MILexer.cpp
|
|
.endif
|
|
|
|
.include "../clang.lib.mk"
|