diff options
Diffstat (limited to 'lib/clang/libllvmmc/Makefile')
-rw-r--r-- | lib/clang/libllvmmc/Makefile | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/lib/clang/libllvmmc/Makefile b/lib/clang/libllvmmc/Makefile new file mode 100644 index 0000000..61b8c37 --- /dev/null +++ b/lib/clang/libllvmmc/Makefile @@ -0,0 +1,56 @@ +# $FreeBSD$ + +.include <bsd.own.mk> + +LIB= llvmmc + +SRCDIR= lib/MC +SRCS= ELFObjectWriter.cpp \ + MCAsmBackend.cpp \ + MCAsmInfo.cpp \ + MCAsmInfoCOFF.cpp \ + MCAsmInfoDarwin.cpp \ + MCAsmStreamer.cpp \ + MCAssembler.cpp \ + MCAtom.cpp \ + MCCodeEmitter.cpp \ + MCCodeGenInfo.cpp \ + MCContext.cpp \ + MCDwarf.cpp \ + MCELF.cpp \ + MCELFObjectTargetWriter.cpp \ + MCELFStreamer.cpp \ + MCExpr.cpp \ + MCInst.cpp \ + MCInstPrinter.cpp \ + MCInstrAnalysis.cpp \ + MCLabel.cpp \ + MCMachOStreamer.cpp \ + MCMachObjectTargetWriter.cpp \ + MCModule.cpp \ + MCNullStreamer.cpp \ + MCObjectFileInfo.cpp \ + MCObjectStreamer.cpp \ + MCObjectWriter.cpp \ + MCPureStreamer.cpp \ + MCRegisterInfo.cpp \ + MCSection.cpp \ + MCSectionCOFF.cpp \ + MCSectionELF.cpp \ + MCSectionMachO.cpp \ + MCStreamer.cpp \ + MCSubtargetInfo.cpp \ + MCSymbol.cpp \ + MCTargetAsmLexer.cpp \ + MCValue.cpp \ + MCWin64EH.cpp \ + MachObjectWriter.cpp \ + SubtargetFeature.cpp \ + WinCOFFObjectWriter.cpp \ + WinCOFFStreamer.cpp + +.if ${MK_CLANG_EXTRAS} != "no" +SRCS+= MCDisassembler.cpp +.endif + +.include "../clang.lib.mk" |