blob: 254cadb7ae416cb21ce07f3e5bd301e3d08335c6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# $NetBSD: Makefile,v 1.2 2015/01/29 20:41:38 joerg Exp $
LIB= lldbPluginAppleObjCRuntime
.include <bsd.init.mk>
.PATH: ${LLDB_SRCDIR}/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime
SRCS+= AppleObjCDeclVendor.cpp \
AppleObjCRuntime.cpp \
AppleObjCRuntimeV1.cpp \
AppleObjCRuntimeV2.cpp \
AppleObjCTrampolineHandler.cpp \
AppleThreadPlanStepThroughObjCTrampoline.cpp
.if defined(HOSTLIB)
.include <bsd.hostlib.mk>
.else
.include <bsd.lib.mk>
.endif
|