blob: f7527ae744ca462e990ac50e6811c64630a4f42d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# $NetBSD: Makefile,v 1.13 2015/01/29 20:41:36 joerg Exp $
LIB= LLVMTarget
.include <bsd.init.mk>
.PATH: ${LLVM_SRCDIR}/lib/Target
SRCS+= Target.cpp \
TargetIntrinsicInfo.cpp \
TargetLibraryInfo.cpp \
TargetLoweringObjectFile.cpp \
TargetMachine.cpp \
TargetMachineC.cpp \
TargetSubtargetInfo.cpp
.if defined(HOSTLIB)
.include <bsd.hostlib.mk>
.else
.include <bsd.lib.mk>
.endif
|