diff options
author | Daniel Dunbar <daniel@zuster.org> | 2010-06-30 22:10:38 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2010-06-30 22:10:38 +0000 |
commit | ac141e61ff36ed04d5314f602536a8e4fe9a122b (patch) | |
tree | 520464770a572986876bd9af96792e79ba19ede3 | |
parent | 4f304db6f541f5db98e911d4ae45a3c9f85b26fc (diff) |
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
-rw-r--r-- | Makefile | 2 | ||||
-rwxr-xr-x | lib/Makefile | 2 | ||||
-rw-r--r-- | runtime/Makefile (renamed from lib/Runtime/Makefile) | 4 |
3 files changed, 4 insertions, 4 deletions
@@ -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 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 " \ |