xref: /minix3/external/bsd/llvm/lib/liblldbHostCommon/Makefile (revision 0a6a1f1d05b60e214de2f05a7310ddd1f0e590e7)
1*0a6a1f1dSLionel Sambuc#	$NetBSD: Makefile,v 1.4 2015/01/29 20:41:38 joerg Exp $
2f4a2713aSLionel Sambuc
3f4a2713aSLionel SambucLIB=	lldbHostCommon
4f4a2713aSLionel Sambuc
5f4a2713aSLionel Sambuc.include <bsd.init.mk>
6f4a2713aSLionel Sambuc
7f4a2713aSLionel Sambuc.PATH: ${LLDB_SRCDIR}/source/Host/common
8f4a2713aSLionel Sambuc
9f4a2713aSLionel SambucSRCS+=	Condition.cpp \
10f4a2713aSLionel Sambuc	DynamicLibrary.cpp \
11*0a6a1f1dSLionel Sambuc	Editline.cpp \
12f4a2713aSLionel Sambuc	File.cpp \
13f4a2713aSLionel Sambuc	FileSpec.cpp \
14f4a2713aSLionel Sambuc	Host.cpp \
15*0a6a1f1dSLionel Sambuc	IOObject.cpp \
16*0a6a1f1dSLionel Sambuc	MonitoringProcessLauncher.cpp \
17f4a2713aSLionel Sambuc	Mutex.cpp \
18*0a6a1f1dSLionel Sambuc	NativeBreakpoint.cpp \
19*0a6a1f1dSLionel Sambuc	NativeBreakpointList.cpp \
20*0a6a1f1dSLionel Sambuc	NativeProcessProtocol.cpp \
21*0a6a1f1dSLionel Sambuc	NativeThreadProtocol.cpp \
22f4a2713aSLionel Sambuc	OptionParser.cpp \
23*0a6a1f1dSLionel Sambuc	PipeBase.cpp \
24f4a2713aSLionel Sambuc	ProcessRunLock.cpp \
25*0a6a1f1dSLionel Sambuc	Socket.cpp \
26f4a2713aSLionel Sambuc	SocketAddress.cpp \
27*0a6a1f1dSLionel Sambuc	SoftwareBreakpoint.cpp \
28f4a2713aSLionel Sambuc	Symbols.cpp \
29f4a2713aSLionel Sambuc	Terminal.cpp \
30f4a2713aSLionel Sambuc	TimeValue.cpp
31f4a2713aSLionel Sambuc
32f4a2713aSLionel SambucCPPFLAGS.OptionParser.cpp+=	-Dgetopt_long_only=getopt_long
33f4a2713aSLionel Sambuc
34f4a2713aSLionel Sambuc.if defined(HOSTLIB)
35f4a2713aSLionel Sambuc.include <bsd.hostlib.mk>
36f4a2713aSLionel Sambuc.else
37f4a2713aSLionel Sambuc.include <bsd.lib.mk>
38f4a2713aSLionel Sambuc.endif
39