mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-09-07 14:16:53 -04:00
25 lines
531 B
Makefile
25 lines
531 B
Makefile
# $NetBSD: Makefile,v 1.4 2012/01/11 23:24:47 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 \
|
|
ARMMCAsmInfo.cpp \
|
|
ARMMCCodeEmitter.cpp \
|
|
ARMMCExpr.cpp \
|
|
ARMMCTargetDesc.cpp \
|
|
ARMMachObjectWriter.cpp
|
|
|
|
.if defined(HOSTLIB)
|
|
.include <bsd.hostlib.mk>
|
|
.else
|
|
.include <bsd.lib.mk>
|
|
.endif
|