From: Daniel Dunbar Date: Wed, 30 Jun 2010 22:10:38 +0000 (+0000) Subject: Move lib/Runtime to runtime/, and build after everything else. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ac141e61ff36ed04d5314f602536a8e4fe9a122b;p=clang Move lib/Runtime to runtime/, and build after everything else. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@107327 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/Makefile b/Makefile index fd34ca369a..f871c25274 100644 --- a/Makefile +++ b/Makefile @@ -14,7 +14,7 @@ ifndef CLANG_LEVEL IS_TOP_LEVEL := 1 CLANG_LEVEL := . -DIRS := include lib tools docs +DIRS := include lib tools runtime docs PARALLEL_DIRS := diff --git a/lib/Makefile b/lib/Makefile index eb5a5a6452..4fca6249ba 100755 --- a/lib/Makefile +++ b/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/lib/Runtime/Makefile b/runtime/Makefile similarity index 97% rename from lib/Runtime/Makefile rename to runtime/Makefile index 347df9ba7e..e0908e4fc6 100644 --- a/lib/Runtime/Makefile +++ b/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 " \