1# $FreeBSD: releng/10.2/lib/clang/liblldbInterpreter/Makefile 255722 2013-09-20 01:52:02Z emaste $
2
3.include <bsd.own.mk>
4
5LIB=	lldbInterpreter
6
7SRCDIR=	tools/lldb/source/Interpreter
8SRCS=	Args.cpp \
9	CommandHistory.cpp \
10	CommandInterpreter.cpp \
11	CommandObject.cpp \
12	CommandObjectRegexCommand.cpp \
13	CommandObjectScript.cpp \
14	CommandReturnObject.cpp \
15	OptionGroupArchitecture.cpp \
16	OptionGroupBoolean.cpp \
17	OptionGroupFile.cpp \
18	OptionGroupFormat.cpp \
19	OptionGroupOutputFile.cpp \
20	OptionGroupPlatform.cpp \
21	OptionGroupString.cpp \
22	OptionGroupUInt64.cpp \
23	OptionGroupUUID.cpp \
24	OptionGroupValueObjectDisplay.cpp \
25	OptionValue.cpp \
26	OptionValueArch.cpp \
27	OptionValueArgs.cpp \
28	OptionValueArray.cpp \
29	OptionValueBoolean.cpp \
30	OptionValueDictionary.cpp \
31	OptionValueEnumeration.cpp \
32	OptionValueFileSpec.cpp \
33	OptionValueFileSpecLIst.cpp \
34	OptionValueFormat.cpp \
35	OptionValuePathMappings.cpp \
36	OptionValueProperties.cpp \
37	OptionValueRegex.cpp \
38	OptionValueSInt64.cpp \
39	OptionValueString.cpp \
40	OptionValueUInt64.cpp \
41	OptionValueUUID.cpp \
42	OptionGroupVariable.cpp \
43	OptionGroupWatchpoint.cpp \
44	Options.cpp \
45	Property.cpp \
46	PythonDataObjects.cpp \
47	ScriptInterpreter.cpp \
48	ScriptInterpreterNone.cpp \
49	ScriptInterpreterPython.cpp
50
51TGHDRS=	DiagnosticCommonKinds \
52	DeclNodes \
53	StmtNodes \
54	CommentCommandList
55
56.include "../lldb.lib.mk"
57