blob: 605b4124a7ce95940b7a757748f19c2f17fd3c6d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# $NetBSD: Makefile,v 1.1 2013/09/29 12:12:01 joerg Exp $
LIB= lldbPluginDynamicLoaderPosixDYLD
.include <bsd.init.mk>
.PATH: ${LLDB_SRCDIR}/source/Plugins/DynamicLoader/POSIX-DYLD
SRCS+= AuxVector.cpp \
DYLDRendezvous.cpp \
DynamicLoaderPOSIXDYLD.cpp
.if defined(HOSTLIB)
.include <bsd.hostlib.mk>
.else
.include <bsd.lib.mk>
.endif
|