freebsd-dev/lib/clang/libllvmx86instprinter/Makefile
Dimitry Andric df5d2454a3 Pull in r170135 from upstream clang trunk:
Dont use/link ARCMT, StaticAnalyzer and Rewriter to clang when the user
  specifies not to. Dont build ASTMatchers with Rewriter disabled and
  StaticAnalyzer when it's disabled.

  Without all those three, the clang binary shrinks (x86_64) from ~36MB
  to ~32MB (unstripped).

To disable these clang components, and get a smaller clang binary built
and installed, set WITHOUT_CLANG_FULL in src.conf(5).  During the
initial stages of buildworld, those extra components are already
disabled automatically, to save some build time.

MFC after:	1 week
2013-02-02 22:28:29 +00:00

20 lines
334 B
Makefile

# $FreeBSD$
.include <bsd.own.mk>
LIB= llvmx86instprinter
SRCDIR= lib/Target/X86/InstPrinter
INCDIR= lib/Target/X86
SRCS= X86ATTInstPrinter.cpp \
X86InstComments.cpp \
X86IntelInstPrinter.cpp
TGHDRS= X86GenAsmWriter \
X86GenAsmWriter1 \
X86GenInstrInfo \
X86GenRegisterInfo \
X86GenSubtargetInfo
.include "../clang.lib.mk"