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