mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-09-07 06:05:19 -04:00
45 lines
1.1 KiB
Makefile
45 lines
1.1 KiB
Makefile
# $NetBSD: Makefile,v 1.5 2012/06/16 17:01:04 joerg Exp $
|
|
|
|
LIB= LLVMPowerPCCodeGen
|
|
|
|
.include <bsd.init.mk>
|
|
|
|
.PATH: ${LLVM_SRCDIR}/lib/Target/PowerPC
|
|
|
|
SRCS+= PPCAsmPrinter.cpp \
|
|
PPCBranchSelector.cpp \
|
|
PPCCTRLoops.cpp \
|
|
PPCCodeEmitter.cpp \
|
|
PPCHazardRecognizers.cpp \
|
|
PPCInstrInfo.cpp \
|
|
PPCISelDAGToDAG.cpp \
|
|
PPCISelLowering.cpp \
|
|
PPCFrameLowering.cpp \
|
|
PPCJITInfo.cpp \
|
|
PPCMachineFunctionInfo.cpp \
|
|
PPCMCInstLower.cpp \
|
|
PPCRegisterInfo.cpp \
|
|
PPCSubtarget.cpp \
|
|
PPCTargetMachine.cpp \
|
|
PPCSelectionDAGInfo.cpp
|
|
|
|
TABLEGEN_SRC= PPC.td
|
|
TABLEGEN_INCLUDES= -I${LLVM_SRCDIR}/lib/Target/PowerPC
|
|
TABLEGEN_OUTPUT= \
|
|
PPCGenAsmWriter.inc|-gen-asm-writer \
|
|
PPCGenCodeEmitter.inc|-gen-emitter \
|
|
PPCGenMCCodeEmitter.inc|-gen-emitter^-mc-emitter \
|
|
PPCGenRegisterInfo.inc|-gen-register-info \
|
|
PPCGenInstrInfo.inc|-gen-instr-info \
|
|
PPCGenDAGISel.inc|-gen-dag-isel \
|
|
PPCGenCallingConv.inc|-gen-callingconv \
|
|
PPCGenSubtargetInfo.inc|-gen-subtarget
|
|
|
|
.include "${.PARSEDIR}/../../tablegen.mk"
|
|
|
|
.if defined(HOSTLIB)
|
|
.include <bsd.hostlib.mk>
|
|
.else
|
|
.include <bsd.lib.mk>
|
|
.endif
|