diff options
-rw-r--r-- | lldb/lib/Makefile | 1 | ||||
-rw-r--r-- | lldb/source/Plugins/Platform/Makefile | 2 | ||||
-rw-r--r-- | lldb/source/Plugins/Platform/Windows/Makefile | 14 |
3 files changed, 16 insertions, 1 deletions
diff --git a/lldb/lib/Makefile b/lldb/lib/Makefile index 85850e607e2..cdacb82ee5a 100644 --- a/lldb/lib/Makefile +++ b/lldb/lib/Makefile @@ -69,6 +69,7 @@ USEDLIBS = lldbAPI.a \ LLVMMCDisassembler.a \ lldbPluginPlatformMacOSX.a \ lldbPluginPlatformLinux.a \ + lldbPluginPlatformWindows.a \ lldbPluginPlatformFreeBSD.a \ lldbPluginPlatformPOSIX.a diff --git a/lldb/source/Plugins/Platform/Makefile b/lldb/source/Plugins/Platform/Makefile index f709362841e..75379f8c2d2 100644 --- a/lldb/source/Plugins/Platform/Makefile +++ b/lldb/source/Plugins/Platform/Makefile @@ -11,7 +11,7 @@ LLDB_LEVEL := ../../.. include $(LLDB_LEVEL)/../../Makefile.config -DIRS := gdb-server MacOSX Linux FreeBSD POSIX +DIRS := gdb-server MacOSX Linux FreeBSD POSIX Windows # ifeq ($(HOST_OS),Darwin) # DIRS += MacOSX diff --git a/lldb/source/Plugins/Platform/Windows/Makefile b/lldb/source/Plugins/Platform/Windows/Makefile new file mode 100644 index 00000000000..b78cd7bfd08 --- /dev/null +++ b/lldb/source/Plugins/Platform/Windows/Makefile @@ -0,0 +1,14 @@ +##===- source/Plugins/Platform/Windows/Makefile --------------*- Makefile -*-===## +# +# The LLVM Compiler Infrastructure +# +# This file is distributed under the University of Illinois Open Source +# License. See LICENSE.TXT for details. +# +##===----------------------------------------------------------------------===## + +LLDB_LEVEL := ../../../.. +LIBRARYNAME := lldbPluginPlatformWindows +BUILD_ARCHIVE = 1 + +include $(LLDB_LEVEL)/Makefile |