mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-12-29 06:47:21 +01:00
47a80b9264
to ease any rework of how clang is built to take arm64 in to account. Submitted by: andrew Reviewed by: andrew, emaste Differential Revision: https://reviews.freebsd.org/D1446
25 lines
516 B
Makefile
25 lines
516 B
Makefile
# $FreeBSD$
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
LIB= llvmaarch64desc
|
|
|
|
SRCDIR= lib/Target/AArch64/MCTargetDesc
|
|
SRCS= AArch64AsmBackend.cpp \
|
|
AArch64ELFObjectWriter.cpp \
|
|
AArch64ELFStreamer.cpp \
|
|
AArch64MCAsmInfo.cpp \
|
|
AArch64MCCodeEmitter.cpp \
|
|
AArch64MCExpr.cpp \
|
|
AArch64MCTargetDesc.cpp \
|
|
AArch64MachObjectWriter.cpp \
|
|
AArch64TargetStreamer.cpp
|
|
CFLAGS+= -I${LLVM_SRCS}/${SRCDIR}/..
|
|
|
|
TGHDRS= AArch64GenInstrInfo \
|
|
AArch64GenMCCodeEmitter \
|
|
AArch64GenRegisterInfo \
|
|
AArch64GenSubtargetInfo
|
|
|
|
.include "../clang.lib.mk"
|