From: Ian Lance Taylor Date: Tue, 2 Dec 2008 20:52:47 +0000 (-0800) Subject: The flag and fmt libraries are now available from gccgo by X-Git-Tag: weekly.2009-11-06~2591 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=748287d49e6896aa4529e906091a4f54c7638399;p=gostls13.git The flag and fmt libraries are now available from gccgo by default. Fix PRETTY_OBJS to include compilation.o rather than compilation.go. R=gri DELTA=10 (0 added, 8 deleted, 2 changed) OCL=20248 CL=20257 --- diff --git a/usr/gri/pretty/Makefile.iant b/usr/gri/pretty/Makefile.iant index 3c952f0f7b..b6d794a272 100644 --- a/usr/gri/pretty/Makefile.iant +++ b/usr/gri/pretty/Makefile.iant @@ -11,14 +11,12 @@ LDFLAGS = -Wl,-R,/home/iant/go/lib PRETTY_OBJS = \ ast.o \ pretty.o \ - compilation.go \ + compilation.o \ parser.o \ platform.o \ printer.o \ scanner.o \ - utils.o \ - flag.o \ - fmt.o \ + utils.o pretty: $(PRETTY_OBJS) $(GO) $(LDFLAGS) -o $@ $(PRETTY_OBJS) @@ -48,12 +46,6 @@ platform.o: utils.o printer.o: scanner.o ast.o -flag.o: fmt.o - $(GO) -O2 -c -g $(GOROOT)/src/lib/flag.go - -fmt.o: - $(GO) -O2 -c -g $(GOROOT)/src/lib/fmt.go - .SUFFIXES: .SUFFIXES: .go .o