dff0c46c97
upcoming 3.1 release (expected in a few weeks). Preliminary release notes can be found at: <http://llvm.org/docs/ReleaseNotes.html> MFC after: 2 weeks
51 lines
1.1 KiB
Makefile
51 lines
1.1 KiB
Makefile
# $FreeBSD$
|
|
|
|
LIB= llvmarmcodegen
|
|
|
|
SRCDIR= lib/Target/ARM
|
|
SRCS= ARMAsmPrinter.cpp \
|
|
ARMBaseInstrInfo.cpp \
|
|
ARMBaseRegisterInfo.cpp \
|
|
ARMCodeEmitter.cpp \
|
|
ARMConstantIslandPass.cpp \
|
|
ARMConstantPoolValue.cpp \
|
|
ARMELFWriterInfo.cpp \
|
|
ARMExpandPseudoInsts.cpp \
|
|
ARMFastISel.cpp \
|
|
ARMFrameLowering.cpp \
|
|
ARMHazardRecognizer.cpp \
|
|
ARMISelDAGToDAG.cpp \
|
|
ARMISelLowering.cpp \
|
|
ARMInstrInfo.cpp \
|
|
ARMJITInfo.cpp \
|
|
ARMLoadStoreOptimizer.cpp \
|
|
ARMMCInstLower.cpp \
|
|
ARMMachineFunctionInfo.cpp \
|
|
ARMRegisterInfo.cpp \
|
|
ARMSelectionDAGInfo.cpp \
|
|
ARMSubtarget.cpp \
|
|
ARMTargetMachine.cpp \
|
|
ARMTargetObjectFile.cpp \
|
|
MLxExpansionPass.cpp \
|
|
Thumb1FrameLowering.cpp \
|
|
Thumb1InstrInfo.cpp \
|
|
Thumb1RegisterInfo.cpp \
|
|
Thumb2ITBlockPass.cpp \
|
|
Thumb2InstrInfo.cpp \
|
|
Thumb2RegisterInfo.cpp \
|
|
Thumb2SizeReduction.cpp
|
|
|
|
TGHDRS= ARMGenAsmWriter \
|
|
ARMGenCallingConv \
|
|
ARMGenCodeEmitter \
|
|
ARMGenDAGISel \
|
|
ARMGenFastISel \
|
|
ARMGenInstrInfo \
|
|
ARMGenMCCodeEmitter \
|
|
ARMGenMCPseudoLowering \
|
|
ARMGenRegisterInfo \
|
|
ARMGenSubtargetInfo \
|
|
Intrinsics
|
|
|
|
.include "../clang.lib.mk"
|