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