Use _LOCAL_ gccas to build instead of Chris's
authorChris Lattner <sabre@nondot.org>
Sun, 9 Dec 2001 16:55:43 +0000 (16:55 +0000)
committerChris Lattner <sabre@nondot.org>
Sun, 9 Dec 2001 16:55:43 +0000 (16:55 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@1436 91177308-0d34-0410-b5e6-96231b3b80d8

test/Makefile.target
test/Makefile.tests

index 37ebbbc4c3484ba30b9452e6f0609cbb2459deaa..36af7047fe79fb9b8294d56e390cb3d2b5b27dfd 100644 (file)
@@ -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 $<
index 37ebbbc4c3484ba30b9452e6f0609cbb2459deaa..36af7047fe79fb9b8294d56e390cb3d2b5b27dfd 100644 (file)
@@ -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 $<