mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-08-08 05:29:10 -04:00
31 lines
687 B
Makefile
31 lines
687 B
Makefile
# $NetBSD: Makefile,v 1.10 2014/05/30 18:28:14 joerg Exp $
|
|
|
|
LIB= LLVMARMMCTargetDesc
|
|
|
|
.include <bsd.init.mk>
|
|
|
|
.PATH: ${LLVM_SRCDIR}/lib/Target/ARM/MCTargetDesc
|
|
|
|
ARM_OBJDIR!= cd ${.CURDIR}/../libLLVMARMCodeGen && ${PRINTOBJDIR}
|
|
CPPFLAGS+= -I${ARM_OBJDIR} -I${LLVM_SRCDIR}/lib/Target/ARM
|
|
|
|
SRCS+= ARMAsmBackend.cpp \
|
|
ARMELFObjectWriter.cpp \
|
|
ARMELFStreamer.cpp \
|
|
ARMMCAsmInfo.cpp \
|
|
ARMMCCodeEmitter.cpp \
|
|
ARMMCExpr.cpp \
|
|
ARMMCTargetDesc.cpp \
|
|
ARMTargetStreamer.cpp \
|
|
ARMMachORelocationInfo.cpp \
|
|
ARMMachObjectWriter.cpp \
|
|
ARMUnwindOpAsm.cpp \
|
|
ARMWinCOFFObjectWriter.cpp \
|
|
ARMWinCOFFStreamer.cpp
|
|
|
|
.if defined(HOSTLIB)
|
|
.include <bsd.hostlib.mk>
|
|
.else
|
|
.include <bsd.lib.mk>
|
|
.endif
|