minix/external/bsd/llvm/lib/liblldbPluginProcessPOSIX/Makefile
Lionel Sambuc f4a2713ac8 Importing netbsd clang -- pristine
Change-Id: Ia40e9ffdf29b5dab2f122f673ff6802a58bc690f
2014-07-28 17:05:57 +02:00

36 lines
1.2 KiB
Makefile

# $NetBSD: Makefile,v 1.2 2013/10/14 01:37:40 joerg Exp $
LIB= lldbPluginProcessPOSIX
.include <bsd.init.mk>
.PATH: ${LLDB_SRCDIR}/source/Plugins/Process/POSIX
CPPFLAGS.POSIXThread.cpp= -I${LLDB_SRCDIR}/source/Plugins/Process/FreeBSD
CPPFLAGS.ProcessPOSIX.cpp= -I${LLDB_SRCDIR}/source/Plugins/Process/FreeBSD
CPPFLAGS.RegisterContextPOSIX_x86.cpp= -I${LLDB_SRCDIR}/source/Plugins/Process/FreeBSD
CPPFLAGS.RegisterContextPOSIXProcessMonitor_x86.cpp= -I${LLDB_SRCDIR}/source/Plugins/Process/FreeBSD
CPPFLAGS.RegisterContextPOSIXProcessMonitor_mips64.cpp= -I${LLDB_SRCDIR}/source/Plugins/Process/FreeBSD
CPPFLAGS.POSIXThread.cpp+= -I${LLDB_SRCDIR}/source/Plugins/Process/Utility
SRCS+= POSIXStopInfo.cpp \
POSIXThread.cpp \
ProcessMessage.cpp \
ProcessPOSIX.cpp \
ProcessPOSIXLog.cpp \
RegisterContextPOSIX_mips64.cpp \
RegisterContextPOSIX_x86.cpp \
RegisterContextFreeBSD_i386.cpp \
RegisterContextFreeBSD_mips64.cpp \
RegisterContextFreeBSD_x86_64.cpp \
RegisterContextLinux_i386.cpp \
RegisterContextLinux_x86_64.cpp \
RegisterContextPOSIXProcessMonitor_mips64.cpp \
RegisterContextPOSIXProcessMonitor_x86.cpp
.if defined(HOSTLIB)
.include <bsd.hostlib.mk>
.else
.include <bsd.lib.mk>
.endif