This contains many improvements, primarily better C++ support, an integrated assembler for x86 and support for -pg.
22 lines
398 B
Makefile
22 lines
398 B
Makefile
# $FreeBSD$
|
|
|
|
LIB= llvmtarget
|
|
|
|
SRCDIR= lib/Target
|
|
SRCS= Mangler.cpp \
|
|
SubtargetFeature.cpp \
|
|
Target.cpp \
|
|
TargetAsmInfo.cpp \
|
|
TargetAsmLexer.cpp \
|
|
TargetData.cpp \
|
|
TargetELFWriterInfo.cpp \
|
|
TargetFrameLowering.cpp \
|
|
TargetInstrInfo.cpp \
|
|
TargetLibraryInfo.cpp \
|
|
TargetLoweringObjectFile.cpp \
|
|
TargetMachine.cpp \
|
|
TargetRegisterInfo.cpp \
|
|
TargetSubtarget.cpp
|
|
|
|
.include "../clang.lib.mk"
|