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