diff options
author | Daniel Dunbar <daniel@zuster.org> | 2010-06-08 20:34:18 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2010-06-08 20:34:18 +0000 |
commit | afed099bd2e759efd4bb63fdc525d3445f94cc13 (patch) | |
tree | 614ee41fe363b5cd45cec8876dd7d68db101ba4c /lib/Runtime | |
parent | 7a4026211750cf4f387251956a8ade2a19b28998 (diff) |
Makefile: Switch Clang Makefiles to always include the top-level Clang Makefile.
- This eliminates most dependencies on how Clang is installed relative to LLVM.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@105637 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Runtime')
-rw-r--r-- | lib/Runtime/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Runtime/Makefile b/lib/Runtime/Makefile index 580215acb6..1b258184af 100644 --- a/lib/Runtime/Makefile +++ b/lib/Runtime/Makefile @@ -13,8 +13,8 @@ # ##===----------------------------------------------------------------------===## -LEVEL = ../../../.. -include $(LEVEL)/Makefile.common +CLANG_LEVEL := ../.. +include $(CLANG_LEVEL)/Makefile CLANG_VERSION := $(shell cat $(PROJ_SRC_DIR)/../../VER) ResourceDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/lib/clang/$(CLANG_VERSION) |