aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2006-03-26 07:45:48 +0000
committerChris Lattner <sabre@nondot.org>2006-03-26 07:45:48 +0000
commite16449bcd85ad9f47ad229f554be6186c46a7a05 (patch)
tree5e533f3aea7331e9a9912df6527f542818c137bb /lib
parentb8a45c27986806220c6b112e5b6ee7baa1ab2efe (diff)
Update dependencies to reflect split of the Intrinsics.td file
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@27144 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r--lib/VMCore/Makefile7
1 files changed, 5 insertions, 2 deletions
diff --git a/lib/VMCore/Makefile b/lib/VMCore/Makefile
index 69841148b2..424d874996 100644
--- a/lib/VMCore/Makefile
+++ b/lib/VMCore/Makefile
@@ -20,9 +20,12 @@ include $(LEVEL)/Makefile.common
GENFILE:=$(PROJ_SRC_ROOT)/include/llvm/Intrinsics.gen
-$(GENFILE): $(PROJ_SRC_ROOT)/include/llvm/Intrinsics.td $(TBLGEN)
+INTRINSICTD := $(PROJ_SRC_ROOT)/include/llvm/Intrinsics.td
+INTRINSICTDS := $(wildcard $(PROJ_SRC_ROOT)/include/llvm/Intrinsics*.td)
+
+$(GENFILE): $(INTRINSICTDS) $(TBLGEN)
$(Echo) Building Intrinsics.gen from Intrinsics.td
- $(Verb) $(TableGen) $< -o $@ -gen-intrinsic
+ $(Verb) $(TableGen) $(INTRINSICTD) -o $@ -gen-intrinsic
install-local:: $(GENFILE)
$(DataInstall) $(GENFILE) $(PROJ_includedir)/llvm/Intrinsics.gen