From e3eadf0f3b46a631de5d9224c6cca1074b238bb5 Mon Sep 17 00:00:00 2001 From: Deepak Panickal Date: Tue, 15 Oct 2013 13:52:20 +0000 Subject: [PATCH] Update makefiles to build PlatformWindows llvm-svn: 192702 --- lldb/lib/Makefile | 1 + lldb/source/Plugins/Platform/Makefile | 2 +- lldb/source/Plugins/Platform/Windows/Makefile | 14 ++++++++++++++ 3 files changed, 16 insertions(+), 1 deletion(-) create mode 100644 lldb/source/Plugins/Platform/Windows/Makefile diff --git a/lldb/lib/Makefile b/lldb/lib/Makefile index 85850e607e2c..cdacb82ee5a5 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 f709362841e2..75379f8c2d2a 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 000000000000..b78cd7bfd080 --- /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