1# $OpenBSD: Makefile,v 1.3 2019/06/23 22:07:43 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 CommandObjectBugreport.cpp \ 14 CommandObjectCommands.cpp \ 15 CommandObjectDisassemble.cpp \ 16 CommandObjectExpression.cpp \ 17 CommandObjectFrame.cpp \ 18 CommandObjectGUI.cpp \ 19 CommandObjectHelp.cpp \ 20 CommandObjectLog.cpp \ 21 CommandObjectMemory.cpp \ 22 CommandObjectMultiword.cpp \ 23 CommandObjectPlatform.cpp \ 24 CommandObjectPlugin.cpp \ 25 CommandObjectProcess.cpp \ 26 CommandObjectQuit.cpp \ 27 CommandObjectRegister.cpp \ 28 CommandObjectReproducer.cpp \ 29 CommandObjectSettings.cpp \ 30 CommandObjectSource.cpp \ 31 CommandObjectStats.cpp \ 32 CommandObjectTarget.cpp \ 33 CommandObjectThread.cpp \ 34 CommandObjectType.cpp \ 35 CommandObjectVersion.cpp \ 36 CommandObjectWatchpoint.cpp \ 37 CommandObjectWatchpointCommand.cpp \ 38 CommandObjectLanguage.cpp \ 39 40.PATH: ${.CURDIR}/../../../llvm/tools/lldb/source/Commands 41 42install: 43 @# Nothing here so far ... 44 45.include <bsd.lib.mk> 46 47CPPFLAGS+= ${LLDB_INCLUDES} 48CPPFLAGS+= ${CLANG_INCLUDES} 49