25 lines
483 B
Makefile
25 lines
483 B
Makefile
# $FreeBSD$
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
LIB= llvmx86desc
|
|
|
|
SRCDIR= lib/Target/X86/MCTargetDesc
|
|
SRCS= X86AsmBackend.cpp \
|
|
X86ELFObjectWriter.cpp \
|
|
X86ELFRelocationInfo.cpp \
|
|
X86MCAsmInfo.cpp \
|
|
X86MCCodeEmitter.cpp \
|
|
X86MCTargetDesc.cpp \
|
|
X86MachORelocationInfo.cpp \
|
|
X86MachObjectWriter.cpp \
|
|
X86WinCOFFObjectWriter.cpp \
|
|
X86WinCOFFStreamer.cpp
|
|
CFLAGS+= -I${LLVM_SRCS}/${SRCDIR}/..
|
|
|
|
TGHDRS= X86GenInstrInfo \
|
|
X86GenRegisterInfo \
|
|
X86GenSubtargetInfo
|
|
|
|
.include "../clang.lib.mk"
|