This contains many improvements, primarily better C++ support, an integrated assembler for x86 and support for -pg.
39 lines
732 B
Makefile
39 lines
732 B
Makefile
# $FreeBSD$
|
|
|
|
LIB= llvmmc
|
|
|
|
SRCDIR= lib/MC
|
|
SRCS= ELFObjectWriter.cpp \
|
|
MCAsmInfo.cpp \
|
|
MCAsmInfoCOFF.cpp \
|
|
MCAsmInfoDarwin.cpp \
|
|
MCAsmStreamer.cpp \
|
|
MCAssembler.cpp \
|
|
MCCodeEmitter.cpp \
|
|
MCContext.cpp \
|
|
MCDwarf.cpp \
|
|
MCELFObjectTargetWriter.cpp \
|
|
MCELFStreamer.cpp \
|
|
MCExpr.cpp \
|
|
MCInst.cpp \
|
|
MCInstPrinter.cpp \
|
|
MCLoggingStreamer.cpp \
|
|
MCMachOStreamer.cpp \
|
|
MCMachObjectTargetWriter.cpp \
|
|
MCNullStreamer.cpp \
|
|
MCObjectStreamer.cpp \
|
|
MCObjectWriter.cpp \
|
|
MCPureStreamer.cpp \
|
|
MCSection.cpp \
|
|
MCSectionCOFF.cpp \
|
|
MCSectionELF.cpp \
|
|
MCSectionMachO.cpp \
|
|
MCStreamer.cpp \
|
|
MCSymbol.cpp \
|
|
MachObjectWriter.cpp \
|
|
TargetAsmBackend.cpp \
|
|
WinCOFFObjectWriter.cpp \
|
|
WinCOFFStreamer.cpp
|
|
|
|
.include "../clang.lib.mk"
|