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
This commit is contained in:
Chris Lattner
2001-12-09 16:55:43 +00:00
parent 789cebb908
commit e5b27bd320
2 changed files with 12 additions and 4 deletions

View 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 $<

View 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 $<