[cfe-commits] r89387 - /cfe/trunk/include/clang/Driver/Makefile

Daniel Dunbar daniel at zuster.org
Thu Nov 19 12:54:45 PST 2009


Author: ddunbar
Date: Thu Nov 19 14:54:45 2009
New Revision: 89387

URL: http://llvm.org/viewvc/llvm-project?rev=89387&view=rev
Log:
Add missing dependency on TableGen.

Modified:
    cfe/trunk/include/clang/Driver/Makefile

Modified: cfe/trunk/include/clang/Driver/Makefile
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/Driver/Makefile?rev=89387&r1=89386&r2=89387&view=diff

==============================================================================
--- cfe/trunk/include/clang/Driver/Makefile (original)
+++ cfe/trunk/include/clang/Driver/Makefile Thu Nov 19 14:54:45 2009
@@ -5,11 +5,11 @@
 
 include $(LEVEL)/Makefile.common
 
-$(ObjDir)/Options.inc.tmp : Options.td OptParser.td $(ObjDir)/.dir
+$(ObjDir)/Options.inc.tmp : Options.td OptParser.td $(TBLGEN) $(ObjDir)/.dir
 	$(Echo) "Building Clang Driver Option tables with tblgen"
 	$(Verb) $(TableGen) -gen-opt-parser-defs -o $(call SYSPATH, $@) $<
 
-$(ObjDir)/CC1Options.inc.tmp : CC1Options.td OptParser.td $(ObjDir)/.dir
+$(ObjDir)/CC1Options.inc.tmp : CC1Options.td OptParser.td $(TBLGEN) $(ObjDir)/.dir
 	$(Echo) "Building Clang CC1 Option tables with tblgen"
 	$(Verb) $(TableGen) -gen-opt-parser-defs -o $(call SYSPATH, $@) $<
 





More information about the cfe-commits mailing list