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 | e6c1daa8fd5c6e2f5b1c2820491d6f748d4918c8 (patch) | |
tree | 2ec2822d7dcaeaabd296499dbf3ffbc0f3719be9 /clang/lib/Index | |
parent | 281d6bc8946661b8620e6d2729b0a2ab80b77e58 (diff) | |
download | bcm5719-llvm-e6c1daa8fd5c6e2f5b1c2820491d6f748d4918c8.tar.gz bcm5719-llvm-e6c1daa8fd5c6e2f5b1c2820491d6f748d4918c8.zip |
Makefile: Switch Clang Makefiles to always include the top-level Clang Makefile.
- This eliminates most dependencies on how Clang is installed relative to LLVM.
llvm-svn: 105637
Diffstat (limited to 'clang/lib/Index')
-rw-r--r-- | clang/lib/Index/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/clang/lib/Index/Makefile b/clang/lib/Index/Makefile index 4d8671361cd..191e9d4b595 100644 --- a/clang/lib/Index/Makefile +++ b/clang/lib/Index/Makefile @@ -11,8 +11,8 @@ # ##===----------------------------------------------------------------------===## -LEVEL = ../../../.. -include $(LEVEL)/Makefile.config +CLANG_LEVEL := ../.. +include $(CLANG_LEVEL)/../../Makefile.config LIBRARYNAME := clangIndex BUILD_ARCHIVE = 1 @@ -23,5 +23,5 @@ endif CPP.Flags += -I$(PROJ_SRC_DIR)/../../include -I$(PROJ_OBJ_DIR)/../../include -include $(LEVEL)/Makefile.common +include $(CLANG_LEVEL)/Makefile |