aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-06-28 22:16:59 +0000
committerChris Lattner <sabre@nondot.org>2003-06-28 22:16:59 +0000
commit0bc99d36b68343d01be975539ce5f1d75291855c (patch)
tree8570027361a85273150e6b1a926bf1c866e7a2d6
parent312edd330fb70f7b0f476b253b5073cf7d01def3 (diff)
Improve the make rule
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6948 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/Analysis/DSGraph/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/Analysis/DSGraph/Makefile b/test/Analysis/DSGraph/Makefile
index a24f578983..b89856f76c 100644
--- a/test/Analysis/DSGraph/Makefile
+++ b/test/Analysis/DSGraph/Makefile
@@ -6,5 +6,6 @@ TESTS := $(wildcard *.ll)
all:: $(addprefix Output/, $(TESTS:%.ll=%.ll.out))
-Output/%.ll.out: %.ll Output/.dir $(LOPT) $(LANALYZE)
+$(addprefix Output/, $(TESTS:%.ll=%.ll.out)):
+Output/%.ll.out: %.ll Output/.dir $(LOPT)
-$(TESTRUNR) $<