summaryrefslogtreecommitdiff
path: root/test/Makefile.tests
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-02-01 04:25:12 +0000
committerChris Lattner <sabre@nondot.org>2002-02-01 04:25:12 +0000
commitfbda7a029786a8c95538b1e64cf154456ae770c2 (patch)
tree6e471c0d0c0d24b8bef0f1206fc626cc79ac9e79 /test/Makefile.tests
parent9a3c2b58bc550b8d70944ee11091acae326ca70b (diff)
downloadllvm-fbda7a029786a8c95538b1e64cf154456ae770c2.tar.gz
llvm-fbda7a029786a8c95538b1e64cf154456ae770c2.tar.bz2
llvm-fbda7a029786a8c95538b1e64cf154456ae770c2.tar.xz
Add TESTRUNR var
Correctly create directory for .bc target git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@1623 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Makefile.tests')
-rw-r--r--test/Makefile.tests3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/Makefile.tests b/test/Makefile.tests
index 5064c80957..34116cbac4 100644
--- a/test/Makefile.tests
+++ b/test/Makefile.tests
@@ -32,6 +32,7 @@ LLINK = $(TOOLS)/link
LCCFLAGS += -O2 -Wall
LLCFLAGS =
FAILURE = $(LEVEL)/test/Failure.sh
+TESTRUNR = $(LEVEL)/test/TestRunner.sh
# Native Tool Definitions
NATGCC = /usr/dcs/software/supported/bin/gcc
@@ -63,7 +64,7 @@ Output/%.ll: %.c $(LCC1) Output/.dir
Output/%.bc: Output/%.ll $(LGCCAS)
$(LGCCAS) $< -o $@
-Output/%.bc: %.ll $(LAS)
+Output/%.bc: %.ll $(LAS) Output/.dir
$(LAS) -f $< -o $@
#