xref: /minix3/external/bsd/llvm/lib/liblldbCommands/Makefile (revision f4a2713ac843a11c696ec80c0a5e3e5d80b4d338)
1*f4a2713aSLionel Sambuc#	$NetBSD: Makefile,v 1.1 2013/09/29 12:12:00 joerg Exp $
2*f4a2713aSLionel Sambuc
3*f4a2713aSLionel SambucLIB=	lldbCommands
4*f4a2713aSLionel Sambuc
5*f4a2713aSLionel Sambuc.include <bsd.init.mk>
6*f4a2713aSLionel Sambuc
7*f4a2713aSLionel Sambuc.PATH: ${LLDB_SRCDIR}/source/Commands
8*f4a2713aSLionel Sambuc
9*f4a2713aSLionel SambucSRCS+=	CommandCompletions.cpp \
10*f4a2713aSLionel Sambuc	CommandObjectApropos.cpp \
11*f4a2713aSLionel Sambuc	CommandObjectArgs.cpp \
12*f4a2713aSLionel Sambuc	CommandObjectBreakpoint.cpp \
13*f4a2713aSLionel Sambuc	CommandObjectBreakpointCommand.cpp \
14*f4a2713aSLionel Sambuc	CommandObjectCommands.cpp \
15*f4a2713aSLionel Sambuc	CommandObjectDisassemble.cpp \
16*f4a2713aSLionel Sambuc	CommandObjectExpression.cpp \
17*f4a2713aSLionel Sambuc	CommandObjectFrame.cpp \
18*f4a2713aSLionel Sambuc	CommandObjectHelp.cpp \
19*f4a2713aSLionel Sambuc	CommandObjectLog.cpp \
20*f4a2713aSLionel Sambuc	CommandObjectMemory.cpp \
21*f4a2713aSLionel Sambuc	CommandObjectMultiword.cpp \
22*f4a2713aSLionel Sambuc	CommandObjectPlatform.cpp \
23*f4a2713aSLionel Sambuc	CommandObjectPlugin.cpp \
24*f4a2713aSLionel Sambuc	CommandObjectProcess.cpp \
25*f4a2713aSLionel Sambuc	CommandObjectQuit.cpp \
26*f4a2713aSLionel Sambuc	CommandObjectRegister.cpp \
27*f4a2713aSLionel Sambuc	CommandObjectSettings.cpp \
28*f4a2713aSLionel Sambuc	CommandObjectSource.cpp \
29*f4a2713aSLionel Sambuc	CommandObjectSyntax.cpp \
30*f4a2713aSLionel Sambuc	CommandObjectTarget.cpp \
31*f4a2713aSLionel Sambuc	CommandObjectThread.cpp \
32*f4a2713aSLionel Sambuc	CommandObjectType.cpp \
33*f4a2713aSLionel Sambuc	CommandObjectVersion.cpp \
34*f4a2713aSLionel Sambuc	CommandObjectWatchpoint.cpp \
35*f4a2713aSLionel Sambuc	CommandObjectWatchpointCommand.cpp
36*f4a2713aSLionel Sambuc
37*f4a2713aSLionel Sambuc.if defined(HOSTLIB)
38*f4a2713aSLionel Sambuc.include <bsd.hostlib.mk>
39*f4a2713aSLionel Sambuc.else
40*f4a2713aSLionel Sambuc.include <bsd.lib.mk>
41*f4a2713aSLionel Sambuc.endif
42