1*0a6a1f1dSLionel Sambuc# $NetBSD: Makefile,v 1.3 2015/01/29 20:41:38 joerg Exp $ 2f4a2713aSLionel Sambuc 3f4a2713aSLionel SambucLIB= lldbInterpreter 4f4a2713aSLionel Sambuc 5f4a2713aSLionel Sambuc.include <bsd.init.mk> 6f4a2713aSLionel Sambuc 7f4a2713aSLionel Sambuc.PATH: ${LLDB_SRCDIR}/source/Interpreter 8f4a2713aSLionel Sambuc 9f4a2713aSLionel SambucSRCS+= Args.cpp \ 10f4a2713aSLionel Sambuc CommandHistory.cpp \ 11f4a2713aSLionel Sambuc CommandInterpreter.cpp \ 12f4a2713aSLionel Sambuc CommandObject.cpp \ 13f4a2713aSLionel Sambuc CommandObjectRegexCommand.cpp \ 14f4a2713aSLionel Sambuc CommandObjectScript.cpp \ 15*0a6a1f1dSLionel Sambuc CommandOptionValidators.cpp \ 16f4a2713aSLionel Sambuc CommandReturnObject.cpp \ 17f4a2713aSLionel Sambuc OptionGroupArchitecture.cpp \ 18f4a2713aSLionel Sambuc OptionGroupBoolean.cpp \ 19f4a2713aSLionel Sambuc OptionGroupFile.cpp \ 20f4a2713aSLionel Sambuc OptionGroupFormat.cpp \ 21f4a2713aSLionel Sambuc OptionGroupOutputFile.cpp \ 22f4a2713aSLionel Sambuc OptionGroupPlatform.cpp \ 23f4a2713aSLionel Sambuc OptionGroupString.cpp \ 24f4a2713aSLionel Sambuc OptionGroupUInt64.cpp \ 25f4a2713aSLionel Sambuc OptionGroupUUID.cpp \ 26f4a2713aSLionel Sambuc OptionGroupValueObjectDisplay.cpp \ 27f4a2713aSLionel Sambuc OptionValue.cpp \ 28f4a2713aSLionel Sambuc OptionValueArch.cpp \ 29f4a2713aSLionel Sambuc OptionValueArgs.cpp \ 30f4a2713aSLionel Sambuc OptionValueArray.cpp \ 31f4a2713aSLionel Sambuc OptionValueBoolean.cpp \ 32*0a6a1f1dSLionel Sambuc OptionValueChar.cpp \ 33f4a2713aSLionel Sambuc OptionValueDictionary.cpp \ 34f4a2713aSLionel Sambuc OptionValueEnumeration.cpp \ 35f4a2713aSLionel Sambuc OptionValueFileSpec.cpp \ 36f4a2713aSLionel Sambuc OptionValueFileSpecLIst.cpp \ 37f4a2713aSLionel Sambuc OptionValueFormat.cpp \ 38f4a2713aSLionel Sambuc OptionValuePathMappings.cpp \ 39f4a2713aSLionel Sambuc OptionValueProperties.cpp \ 40f4a2713aSLionel Sambuc OptionValueRegex.cpp \ 41f4a2713aSLionel Sambuc OptionValueSInt64.cpp \ 42f4a2713aSLionel Sambuc OptionValueString.cpp \ 43f4a2713aSLionel Sambuc OptionValueUInt64.cpp \ 44f4a2713aSLionel Sambuc OptionValueUUID.cpp \ 45f4a2713aSLionel Sambuc OptionGroupVariable.cpp \ 46f4a2713aSLionel Sambuc OptionGroupWatchpoint.cpp \ 47f4a2713aSLionel Sambuc Options.cpp \ 48f4a2713aSLionel Sambuc Property.cpp \ 49f4a2713aSLionel Sambuc PythonDataObjects.cpp \ 50f4a2713aSLionel Sambuc ScriptInterpreter.cpp \ 51f4a2713aSLionel Sambuc ScriptInterpreterNone.cpp \ 52f4a2713aSLionel Sambuc ScriptInterpreterPython.cpp 53f4a2713aSLionel Sambuc 54f4a2713aSLionel Sambuc.if defined(HOSTLIB) 55f4a2713aSLionel Sambuc.include <bsd.hostlib.mk> 56f4a2713aSLionel Sambuc.else 57f4a2713aSLionel Sambuc.include <bsd.lib.mk> 58f4a2713aSLionel Sambuc.endif 59