Move lib/Runtime to runtime/, and build after everything else.

llvm-svn: 107327
diff --git a/clang/Makefile b/clang/Makefile
index fd34ca3..f871c25 100644
--- a/clang/Makefile
+++ b/clang/Makefile
@@ -14,7 +14,7 @@
 
 IS_TOP_LEVEL := 1
 CLANG_LEVEL := .
-DIRS := include lib tools docs
+DIRS := include lib tools runtime docs
 
 PARALLEL_DIRS :=
 
diff --git a/clang/lib/Makefile b/clang/lib/Makefile
index eb5a5a6..4fca624 100755
--- a/clang/lib/Makefile
+++ b/clang/lib/Makefile
@@ -8,7 +8,7 @@
 ##===----------------------------------------------------------------------===##
 CLANG_LEVEL := ..
 
-PARALLEL_DIRS = Headers Runtime Basic Lex Parse AST Sema CodeGen Analysis \
+PARALLEL_DIRS = Headers Basic Lex Parse AST Sema CodeGen Analysis \
                 Checker Rewrite Frontend Index Driver
 
 include $(CLANG_LEVEL)/Makefile
diff --git a/clang/lib/Runtime/Makefile b/clang/runtime/Makefile
similarity index 97%
rename from clang/lib/Runtime/Makefile
rename to clang/runtime/Makefile
index 347df9b..e0908e4 100644
--- a/clang/lib/Runtime/Makefile
+++ b/clang/runtime/Makefile
@@ -1,4 +1,4 @@
-##===- clang/lib/Runtime/Makefile --------------------------*- Makefile -*-===##
+##===- clang/runtime/Makefile ------------------------------*- Makefile -*-===##
 #
 #                     The LLVM Compiler Infrastructure
 #
@@ -13,7 +13,7 @@
 #
 ##===----------------------------------------------------------------------===##
 
-CLANG_LEVEL := ../..
+CLANG_LEVEL := ..
 include $(CLANG_LEVEL)/Makefile
 
 CLANG_VERSION := $(word 3,$(shell grep "CLANG_VERSION " \