f4a2713ac8
Change-Id: Ia40e9ffdf29b5dab2f122f673ff6802a58bc690f
41 lines
997 B
Makefile
41 lines
997 B
Makefile
# $NetBSD: Makefile,v 1.1 2013/09/29 12:12:00 joerg Exp $
|
|
|
|
LIB= lldbCommands
|
|
|
|
.include <bsd.init.mk>
|
|
|
|
.PATH: ${LLDB_SRCDIR}/source/Commands
|
|
|
|
SRCS+= CommandCompletions.cpp \
|
|
CommandObjectApropos.cpp \
|
|
CommandObjectArgs.cpp \
|
|
CommandObjectBreakpoint.cpp \
|
|
CommandObjectBreakpointCommand.cpp \
|
|
CommandObjectCommands.cpp \
|
|
CommandObjectDisassemble.cpp \
|
|
CommandObjectExpression.cpp \
|
|
CommandObjectFrame.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
|