summaryrefslogtreecommitdiff
path: root/test/Makefile.tests
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2001-12-09 16:55:43 +0000
committerChris Lattner <sabre@nondot.org>2001-12-09 16:55:43 +0000
commite5b27bd32052d4d5562d22a3a8ad4298eac3df1c (patch)
tree75cfe1f7d1fb61ca8b3be81ef07c3372378d097a /test/Makefile.tests
parent789cebb908ac2788bbe35c3ef5f8027e52b7c12e (diff)
downloadllvm-e5b27bd32052d4d5562d22a3a8ad4298eac3df1c.tar.gz
llvm-e5b27bd32052d4d5562d22a3a8ad4298eac3df1c.tar.bz2
llvm-e5b27bd32052d4d5562d22a3a8ad4298eac3df1c.tar.xz
Use _LOCAL_ gccas to build instead of Chris's
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@1436 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Makefile.tests')
-rw-r--r--test/Makefile.tests8
1 files changed, 6 insertions, 2 deletions
diff --git a/test/Makefile.tests b/test/Makefile.tests
index 37ebbbc4c3..36af7047fe 100644
--- a/test/Makefile.tests
+++ b/test/Makefile.tests
@@ -16,6 +16,7 @@ LAS = $(TOOLS)/as
LDIS = $(TOOLS)/dis
LOPT = $(TOOLS)/opt
LLINK = $(TOOLS)/link
+LGCCAS = $(TOOLS)/gccas
LLCFLAGS =
LCC = /home/vadve/lattner/cvs/gcc_install/bin/gcc
@@ -81,8 +82,11 @@ clean :
## %.ll: %.c
## $(LCC) $(LCFLAGS) -S $< -o $*.ll
-%.bc: %.c
- $(LCC) $(LCFLAGS) -c $< -o $@
+%.gll: %.c
+ $(LCC) $(LCFLAGS) -S $< -o $@
+
+%.bc: %.gll
+ $(LGCCAS) $< -o $@
%.bc: %.ll
$(LAS) -f $<