1# $OpenBSD: Makefile,v 1.4 2020/08/03 14:45:29 patrick Exp $ 2 3LIB= lldbCommands 4NOPIC= 5NOPROFILE= 6 7.include <bsd.own.mk> 8 9SRCS= CommandCompletions.cpp \ 10 CommandObjectApropos.cpp \ 11 CommandObjectBreakpoint.cpp \ 12 CommandObjectBreakpointCommand.cpp \ 13 CommandObjectCommands.cpp \ 14 CommandObjectDisassemble.cpp \ 15 CommandObjectExpression.cpp \ 16 CommandObjectFrame.cpp \ 17 CommandObjectGUI.cpp \ 18 CommandObjectHelp.cpp \ 19 CommandObjectLog.cpp \ 20 CommandObjectMemory.cpp \ 21 CommandObjectMultiword.cpp \ 22 CommandObjectPlatform.cpp \ 23 CommandObjectPlugin.cpp \ 24 CommandObjectProcess.cpp \ 25 CommandObjectQuit.cpp \ 26 CommandObjectRegister.cpp \ 27 CommandObjectReproducer.cpp \ 28 CommandObjectSettings.cpp \ 29 CommandObjectSource.cpp \ 30 CommandObjectStats.cpp \ 31 CommandObjectTarget.cpp \ 32 CommandObjectThread.cpp \ 33 CommandObjectType.cpp \ 34 CommandObjectVersion.cpp \ 35 CommandObjectWatchpoint.cpp \ 36 CommandObjectWatchpointCommand.cpp \ 37 CommandObjectLanguage.cpp \ 38 39.PATH: ${.CURDIR}/../../../llvm/lldb/source/Commands 40 41install: 42 @# Nothing here so far ... 43 44.include <bsd.lib.mk> 45 46CPPFLAGS+= ${LLDB_INCLUDES} 47CPPFLAGS+= ${CLANG_INCLUDES} 48CPPFLAGS+= -I${.OBJDIR}/../include/lldb/Commands 49