build: Build in the Darwin-Kernel OperatingSystem plugin.

git-svn-id: https://llvm.org/svn/llvm-project/lldb/trunk@143389 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Makefile b/lib/Makefile
index 44575fb..f7ea708 100644
--- a/lib/Makefile
+++ b/lib/Makefile
@@ -75,9 +75,10 @@
               lldbPluginDynamicLoaderDarwinKernel.a \
               lldbPluginObjectContainerUniversalMachO.a \
               lldbPluginObjectFileMachO.a \
+              lldbPluginOperatingSystemDarwinKernel.a \
               lldbPluginSymbolVendorMacOSX.a \
               lldbPluginPlatformMacOSX.a \
-			  lldbPluginProcessDarwin.a
+              lldbPluginProcessDarwin.a
 endif
 
 ifeq ($(HOST_OS),Linux)
diff --git a/source/Plugins/Makefile b/source/Plugins/Makefile
index 7371004..c712361 100644
--- a/source/Plugins/Makefile
+++ b/source/Plugins/Makefile
@@ -21,9 +21,11 @@
 	LanguageRuntime/ObjC/AppleObjCRuntime
 
 ifeq ($(HOST_OS),Darwin)
-DIRS += Process/MacOSX-Kernel DynamicLoader/MacOSX-DYLD \
-	DynamicLoader/Darwin-Kernel \
-	ObjectContainer/Universal-Mach-O ObjectFile/Mach-O SymbolVendor/MacOSX
+DIRS += Process/MacOSX-Kernel
+DIRS += DynamicLoader/MacOSX-DYLD DynamicLoader/Darwin-Kernel
+DIRS +=	ObjectContainer/Universal-Mach-O ObjectFile/Mach-O
+DIRS += SymbolVendor/MacOSX
+DIRS += OperatingSystem/Darwin-Kernel
 #DIRS += Process/MacOSX-User
 endif