aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Collingbourne <peter@pcc.me.uk>2011-10-08 00:26:35 +0000
committerPeter Collingbourne <peter@pcc.me.uk>2011-10-08 00:26:35 +0000
commitd7c8556cc1bfad58c27a1bd6c8c650f86e257b99 (patch)
tree95576a09acbc8605fa7317187ad2e61a0428ac78
parent228971738f80de6f02aee0d6f8018f5209cf7c9c (diff)
Make clang-tblgen's Makefile independent of Clang's top-level Makefile,
to avoid having to make it available for the cross build when it builds only clang-tblgen. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@141453 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--utils/TableGen/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/TableGen/Makefile b/utils/TableGen/Makefile
index b92da8319d..9790efc061 100644
--- a/utils/TableGen/Makefile
+++ b/utils/TableGen/Makefile
@@ -7,7 +7,7 @@
#
##===----------------------------------------------------------------------===##
-CLANG_LEVEL = ../..
+LEVEL = ../../../..
TOOLNAME = clang-tblgen
USEDLIBS = LLVMTableGen.a LLVMSupport.a
REQUIRES_EH := 1
@@ -16,4 +16,4 @@ REQUIRES_RTTI := 1
# This tool has no plugins, optimize startup time.
TOOL_NO_EXPORTS = 1
-include $(CLANG_LEVEL)/Makefile
+include $(LEVEL)/Makefile.common