aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2009-11-19 20:54:45 +0000
committerDaniel Dunbar <daniel@zuster.org>2009-11-19 20:54:45 +0000
commitf7b56fa451893699178b17d88644447bd5dbabd3 (patch)
treeb690d426a30cb8833f1c889cda6ba1c54506cd71
parent23a3542aaa0049f6510e0da89f547806de928408 (diff)
Add missing dependency on TableGen.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@89387 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/clang/Driver/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/clang/Driver/Makefile b/include/clang/Driver/Makefile
index c0f2cc7b67..18f3e58d7d 100644
--- a/include/clang/Driver/Makefile
+++ b/include/clang/Driver/Makefile
@@ -5,11 +5,11 @@ TABLEGEN_INC_FILES_COMMON = 1
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, $@) $<