1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-25 11:37:56 +00:00
freebsd/lib/clang/libllvmmirparser/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

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"