[cfe-commits] r141453 - /cfe/trunk/utils/TableGen/Makefile
Peter Collingbourne
peter at pcc.me.uk
Fri Oct 7 17:26:35 PDT 2011
Author: pcc
Date: Fri Oct 7 19:26:35 2011
New Revision: 141453
URL: http://llvm.org/viewvc/llvm-project?rev=141453&view=rev
Log:
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.
Modified:
cfe/trunk/utils/TableGen/Makefile
Modified: cfe/trunk/utils/TableGen/Makefile
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/utils/TableGen/Makefile?rev=141453&r1=141452&r2=141453&view=diff
==============================================================================
--- cfe/trunk/utils/TableGen/Makefile (original)
+++ cfe/trunk/utils/TableGen/Makefile Fri Oct 7 19:26:35 2011
@@ -7,7 +7,7 @@
#
##===----------------------------------------------------------------------===##
-CLANG_LEVEL = ../..
+LEVEL = ../../../..
TOOLNAME = clang-tblgen
USEDLIBS = LLVMTableGen.a LLVMSupport.a
REQUIRES_EH := 1
@@ -16,4 +16,4 @@
# This tool has no plugins, optimize startup time.
TOOL_NO_EXPORTS = 1
-include $(CLANG_LEVEL)/Makefile
+include $(LEVEL)/Makefile.common
More information about the cfe-commits
mailing list