
This brings our tree to NetBSD 7.0, as found on -current on the 10-10-2015. This updates: - LLVM to 3.6.1 - GCC to GCC 5.1 - Replace minix/commands/zdump with usr.bin/zdump - external/bsd/libelf has moved to /external/bsd/elftoolchain/ - Import ctwm - Drop sprintf from libminc Change-Id: I149836ac18e9326be9353958bab9b266efb056f0
62 lines
1.2 KiB
Makefile
62 lines
1.2 KiB
Makefile
# $NetBSD: Makefile,v 1.17 2014/08/10 17:34:21 joerg Exp $
|
|
|
|
LIB= LLVMMC
|
|
|
|
.include <bsd.init.mk>
|
|
|
|
.PATH: ${LLVM_SRCDIR}/lib/MC
|
|
|
|
SRCS+= ConstantPools.cpp \
|
|
ELFObjectWriter.cpp \
|
|
MCAsmBackend.cpp \
|
|
MCAsmInfo.cpp \
|
|
MCAsmInfoCOFF.cpp \
|
|
MCAsmInfoDarwin.cpp \
|
|
MCAsmInfoELF.cpp \
|
|
MCAsmStreamer.cpp \
|
|
MCAssembler.cpp \
|
|
MCCodeGenInfo.cpp \
|
|
MCCodeEmitter.cpp \
|
|
MCContext.cpp \
|
|
MCDwarf.cpp \
|
|
MCELF.cpp \
|
|
MCELFObjectTargetWriter.cpp \
|
|
MCELFStreamer.cpp \
|
|
MCExpr.cpp \
|
|
MCInst.cpp \
|
|
MCInstrAnalysis.cpp \
|
|
MCInstPrinter.cpp \
|
|
MCLabel.cpp \
|
|
MCLinkerOptimizationHint.cpp \
|
|
MCMachOStreamer.cpp \
|
|
MCMachObjectTargetWriter.cpp \
|
|
MCNullStreamer.cpp \
|
|
MCObjectFileInfo.cpp \
|
|
MCObjectStreamer.cpp \
|
|
MCObjectWriter.cpp \
|
|
MCRegisterInfo.cpp \
|
|
MCSection.cpp \
|
|
MCSectionCOFF.cpp \
|
|
MCSectionELF.cpp \
|
|
MCSectionMachO.cpp \
|
|
MCStreamer.cpp \
|
|
MCSubtargetInfo.cpp \
|
|
MCSymbolizer.cpp \
|
|
MCSymbol.cpp \
|
|
MCTargetOptions.cpp \
|
|
MCValue.cpp \
|
|
MCWin64EH.cpp \
|
|
MCWinEH.cpp \
|
|
MachObjectWriter.cpp \
|
|
WinCOFFStreamer.cpp \
|
|
WinCOFFObjectWriter.cpp \
|
|
StringTableBuilder.cpp \
|
|
SubtargetFeature.cpp \
|
|
YAML.cpp
|
|
|
|
.if defined(HOSTLIB)
|
|
.include <bsd.hostlib.mk>
|
|
.else
|
|
.include <bsd.lib.mk>
|
|
.endif
|