mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-08-07 13:09:33 -04:00
25 lines
555 B
Makefile
25 lines
555 B
Makefile
# $NetBSD: Makefile,v 1.3 2014/01/15 22:21:34 joerg Exp $
|
|
|
|
LIB= LLVMSparcMCTargetDesc
|
|
|
|
.include <bsd.init.mk>
|
|
|
|
SPARC_OBJDIR!= cd ${.CURDIR}/../libLLVMSparcCodeGen && ${PRINTOBJDIR}
|
|
CPPFLAGS+= -I${SPARC_OBJDIR} -I${LLVM_SRCDIR}/lib/Target/Sparc
|
|
|
|
.PATH: ${LLVM_SRCDIR}/lib/Target/Sparc/MCTargetDesc
|
|
|
|
SRCS+= SparcAsmBackend.cpp \
|
|
SparcELFObjectWriter.cpp \
|
|
SparcMCAsmInfo.cpp \
|
|
SparcMCCodeEmitter.cpp \
|
|
SparcMCExpr.cpp \
|
|
SparcMCTargetDesc.cpp \
|
|
SparcTargetStreamer.cpp
|
|
|
|
.if defined(HOSTLIB)
|
|
.include <bsd.hostlib.mk>
|
|
.else
|
|
.include <bsd.lib.mk>
|
|
.endif
|