f4a2713ac8
Change-Id: Ia40e9ffdf29b5dab2f122f673ff6802a58bc690f
41 lines
988 B
Makefile
41 lines
988 B
Makefile
# $NetBSD: Makefile,v 1.5 2013/10/14 01:37:39 joerg Exp $
|
|
|
|
LIB= LLVMSparcCodeGen
|
|
|
|
.include <bsd.init.mk>
|
|
|
|
.PATH: ${LLVM_SRCDIR}/lib/Target/Sparc
|
|
|
|
SRCS+= DelaySlotFiller.cpp \
|
|
SparcAsmPrinter.cpp \
|
|
SparcCodeEmitter.cpp \
|
|
SparcInstrInfo.cpp \
|
|
SparcISelDAGToDAG.cpp \
|
|
SparcISelLowering.cpp \
|
|
SparcJITInfo.cpp \
|
|
SparcFrameLowering.cpp \
|
|
SparcMachineFunctionInfo.cpp \
|
|
SparcRegisterInfo.cpp \
|
|
SparcSubtarget.cpp \
|
|
SparcTargetMachine.cpp \
|
|
SparcSelectionDAGInfo.cpp
|
|
|
|
|
|
TABLEGEN_SRC= Sparc.td
|
|
TABLEGEN_INCLUDES= -I${LLVM_SRCDIR}/lib/Target/Sparc
|
|
TABLEGEN_OUTPUT= \
|
|
SparcGenDAGISel.inc|-gen-dag-isel \
|
|
SparcGenAsmWriter.inc|-gen-asm-writer \
|
|
SparcGenCallingConv.inc|-gen-callingconv \
|
|
SparcGenCodeEmitter.inc|-gen-emitter \
|
|
SparcGenInstrInfo.inc|-gen-instr-info \
|
|
SparcGenRegisterInfo.inc|-gen-register-info \
|
|
SparcGenSubtargetInfo.inc|-gen-subtarget
|
|
|
|
.include "${.PARSEDIR}/../../tablegen.mk"
|
|
|
|
.if defined(HOSTLIB)
|
|
.include <bsd.hostlib.mk>
|
|
.else
|
|
.include <bsd.lib.mk>
|
|
.endif
|