blob: 039c7a25e40f2167c2d1b3b15423bc8d1a55a9ad (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
# $NetBSD: Makefile,v 1.2 2014/05/30 18:28:15 joerg Exp $
LIB= lldbCommands
.include <bsd.init.mk>
.PATH: ${LLDB_SRCDIR}/source/Commands
CPPFLAGS.CommandObjectGUI.cpp+= -DLLDB_DISABLE_CURSES
SRCS+= CommandCompletions.cpp \
CommandObjectApropos.cpp \
CommandObjectArgs.cpp \
CommandObjectBreakpoint.cpp \
CommandObjectBreakpointCommand.cpp \
CommandObjectCommands.cpp \
CommandObjectDisassemble.cpp \
CommandObjectExpression.cpp \
CommandObjectFrame.cpp \
CommandObjectGUI.cpp \
CommandObjectHelp.cpp \
CommandObjectLog.cpp \
CommandObjectMemory.cpp \
CommandObjectMultiword.cpp \
CommandObjectPlatform.cpp \
CommandObjectPlugin.cpp \
CommandObjectProcess.cpp \
CommandObjectQuit.cpp \
CommandObjectRegister.cpp \
CommandObjectSettings.cpp \
CommandObjectSource.cpp \
CommandObjectSyntax.cpp \
CommandObjectTarget.cpp \
CommandObjectThread.cpp \
CommandObjectType.cpp \
CommandObjectVersion.cpp \
CommandObjectWatchpoint.cpp \
CommandObjectWatchpointCommand.cpp
.if defined(HOSTLIB)
.include <bsd.hostlib.mk>
.else
.include <bsd.lib.mk>
.endif
|