blob: 92ce186f5f67b7ed65bf54031864e2de9e5be4e5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
# $FreeBSD$
LIB= llvmmc
SRCDIR= lib/MC
SRCS= MCAsmInfo.cpp \
MCAsmInfoCOFF.cpp \
MCAsmInfoDarwin.cpp \
MCAsmStreamer.cpp \
MCAssembler.cpp \
MCCodeEmitter.cpp \
MCContext.cpp \
MCDisassembler.cpp \
MCExpr.cpp \
MCInst.cpp \
MCInstPrinter.cpp \
MCLabel.cpp \
MCLoggingStreamer.cpp \
MCMachOStreamer.cpp \
MCNullStreamer.cpp \
MCObjectStreamer.cpp \
MCObjectWriter.cpp \
MCSection.cpp \
MCSectionCOFF.cpp \
MCSectionELF.cpp \
MCSectionMachO.cpp \
MCStreamer.cpp \
MCSymbol.cpp \
MCValue.cpp \
MachObjectWriter.cpp \
TargetAsmBackend.cpp \
WinCOFFObjectWriter.cpp \
WinCOFFStreamer.cpp
.include "../clang.lib.mk"
|