diff options
Diffstat (limited to 'lib/clang/liblldbPluginProcessFreeBSD/Makefile')
-rw-r--r-- | lib/clang/liblldbPluginProcessFreeBSD/Makefile | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/lib/clang/liblldbPluginProcessFreeBSD/Makefile b/lib/clang/liblldbPluginProcessFreeBSD/Makefile new file mode 100644 index 0000000..80e668e --- /dev/null +++ b/lib/clang/liblldbPluginProcessFreeBSD/Makefile @@ -0,0 +1,20 @@ +# $FreeBSD$ + +.include <bsd.own.mk> + +LIB= lldbPluginProcessFreeBSD + +# include_directories(.) +CFLAGS+=-I${.CURDIR}/../../../contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD +CFLAGS+=-I${.CURDIR}/../../../contrib/llvm/tools/lldb/source/Plugins/Process/POSIX + +SRCDIR= tools/lldb/source/Plugins/Process/FreeBSD +SRCS= ProcessFreeBSD.cpp \ + ProcessMonitor.cpp + +TGHDRS= DiagnosticCommonKinds \ + DeclNodes \ + StmtNodes \ + CommentCommandList + +.include "../lldb.lib.mk" |