2013-09-19 21:52:02 -04:00
|
|
|
# $FreeBSD$
|
|
|
|
|
|
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
|
|
|
|
|
|
LIB= lldbPluginProcessPOSIX
|
|
|
|
|
|
|
|
|
|
# include_directories(.)
|
|
|
|
|
CFLAGS+=-I${.CURDIR}/../../../contrib/llvm/tools/lldb/source/Plugins/Process/POSIX
|
|
|
|
|
CFLAGS+=-I${.CURDIR}/../../../contrib/llvm/tools/lldb/source/Plugins/Process/Utility
|
|
|
|
|
CFLAGS+=-I${.CURDIR}/../../../contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD
|
|
|
|
|
|
|
|
|
|
SRCDIR= tools/lldb/source/Plugins/Process/POSIX
|
|
|
|
|
SRCS= POSIXStopInfo.cpp \
|
|
|
|
|
POSIXThread.cpp \
|
|
|
|
|
ProcessMessage.cpp \
|
|
|
|
|
ProcessPOSIX.cpp \
|
|
|
|
|
ProcessPOSIXLog.cpp \
|
2013-11-12 12:25:33 -05:00
|
|
|
RegisterContextFreeBSD_i386.cpp \
|
|
|
|
|
RegisterContextFreeBSD_mips64.cpp \
|
2013-09-19 21:52:02 -04:00
|
|
|
RegisterContextFreeBSD_x86_64.cpp \
|
2013-11-12 12:25:33 -05:00
|
|
|
RegisterContextLinux_i386.cpp \
|
2013-09-19 21:52:02 -04:00
|
|
|
RegisterContextLinux_x86_64.cpp \
|
2013-11-12 12:25:33 -05:00
|
|
|
RegisterContextPOSIXProcessMonitor_mips64.cpp \
|
|
|
|
|
RegisterContextPOSIXProcessMonitor_x86.cpp \
|
|
|
|
|
RegisterContextPOSIX_mips64.cpp \
|
|
|
|
|
RegisterContextPOSIX_x86.cpp
|
2013-09-19 21:52:02 -04:00
|
|
|
|
|
|
|
|
TGHDRS= DiagnosticCommonKinds \
|
|
|
|
|
DeclNodes \
|
|
|
|
|
StmtNodes \
|
|
|
|
|
CommentCommandList
|
|
|
|
|
|
|
|
|
|
.include "../lldb.lib.mk"
|