1# $OpenBSD: Makefile,v 1.5 2021/12/17 14:55:46 patrick Exp $ 2 3LIB= lldbInterpreter 4NOPIC= 5NOPROFILE= 6 7.include <bsd.own.mk> 8SRCS= CommandAlias.cpp \ 9 CommandHistory.cpp \ 10 CommandInterpreter.cpp \ 11 CommandObject.cpp \ 12 CommandOptionValidators.cpp \ 13 CommandReturnObject.cpp \ 14 OptionArgParser.cpp \ 15 OptionGroupArchitecture.cpp \ 16 OptionGroupBoolean.cpp \ 17 OptionGroupFile.cpp \ 18 OptionGroupFormat.cpp \ 19 OptionGroupPythonClassWithDict.cpp \ 20 OptionGroupOutputFile.cpp \ 21 OptionGroupPlatform.cpp \ 22 OptionGroupString.cpp \ 23 OptionGroupUInt64.cpp \ 24 OptionGroupUUID.cpp \ 25 OptionGroupValueObjectDisplay.cpp \ 26 OptionValue.cpp \ 27 OptionValueArch.cpp \ 28 OptionValueArgs.cpp \ 29 OptionValueArray.cpp \ 30 OptionValueBoolean.cpp \ 31 OptionValueChar.cpp \ 32 OptionValueDictionary.cpp \ 33 OptionValueEnumeration.cpp \ 34 OptionValueFileColonLine.cpp \ 35 OptionValueFileSpec.cpp \ 36 OptionValueFileSpecList.cpp \ 37 OptionValueFormat.cpp \ 38 OptionValueFormatEntity.cpp \ 39 OptionValueLanguage.cpp \ 40 OptionValuePathMappings.cpp \ 41 OptionValueProperties.cpp \ 42 OptionValueRegex.cpp \ 43 OptionValueSInt64.cpp \ 44 OptionValueString.cpp \ 45 OptionValueUInt64.cpp \ 46 OptionValueUUID.cpp \ 47 OptionGroupVariable.cpp \ 48 OptionGroupWatchpoint.cpp \ 49 Options.cpp \ 50 Property.cpp \ 51 ScriptInterpreter.cpp 52 53.PATH: ${.CURDIR}/../../../llvm/lldb/source/Interpreter 54 55install: 56 @# Nothing here so far ... 57 58.include <bsd.lib.mk> 59 60CPPFLAGS+= ${LLDB_INCLUDES} 61CPPFLAGS+= ${CLANG_INCLUDES} 62CPPFLAGS+= -I${.OBJDIR}/../include/lldb/Interpreter 63