Makefile revision 276479
1# $FreeBSD: head/lib/clang/liblldbInterpreter/Makefile 276479 2014-12-31 20:31:32Z dim $
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	CommandOptionValidators.cpp \
15	CommandReturnObject.cpp \
16	OptionGroupArchitecture.cpp \
17	OptionGroupBoolean.cpp \
18	OptionGroupFile.cpp \
19	OptionGroupFormat.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	OptionValueDictionary.cpp \
32	OptionValueEnumeration.cpp \
33	OptionValueFileSpec.cpp \
34	OptionValueFileSpecLIst.cpp \
35	OptionValueFormat.cpp \
36	OptionValuePathMappings.cpp \
37	OptionValueProperties.cpp \
38	OptionValueRegex.cpp \
39	OptionValueSInt64.cpp \
40	OptionValueString.cpp \
41	OptionValueUInt64.cpp \
42	OptionValueUUID.cpp \
43	OptionGroupVariable.cpp \
44	OptionGroupWatchpoint.cpp \
45	Options.cpp \
46	Property.cpp \
47	PythonDataObjects.cpp \
48	ScriptInterpreter.cpp \
49	ScriptInterpreterNone.cpp \
50	ScriptInterpreterPython.cpp
51
52TGHDRS=	AttrList \
53	Attrs \
54	DiagnosticCommonKinds \
55	DeclNodes \
56	StmtNodes \
57	CommentCommandList
58
59.include "../lldb.lib.mk"
60