diff options
| author | Russ Cox <rsc@golang.org> | 2009-04-16 00:18:37 -0700 |
|---|---|---|
| committer | Russ Cox <rsc@golang.org> | 2009-04-16 00:18:37 -0700 |
| commit | c8f93788898e61fd3d94245a3a79bfc826a32cc7 (patch) | |
| tree | 1d4cd32e489588dee8ecbc1c0c90d924ee9aeae5 /src/lib/strconv | |
| parent | 7847056dfb9f182f492c2f9ebc05e690ceb1c093 (diff) | |
| download | go-c8f93788898e61fd3d94245a3a79bfc826a32cc7.tar.xz | |
regenerate Makefiles.
fix bug in RPC.go (import "RPC" not "rpc.pb")
R=r
DELTA=483 (261 added, 64 deleted, 158 changed)
OCL=27547
CL=27549
Diffstat (limited to 'src/lib/strconv')
| -rw-r--r-- | src/lib/strconv/Makefile | 31 |
1 files changed, 20 insertions, 11 deletions
diff --git a/src/lib/strconv/Makefile b/src/lib/strconv/Makefile index cf74d58f73..b8359f27d6 100644 --- a/src/lib/strconv/Makefile +++ b/src/lib/strconv/Makefile @@ -4,16 +4,22 @@ # DO NOT EDIT. Automatically generated by gobuild. # gobuild -m >Makefile -O=6 + +O_arm=5 +O_amd64=6 +O_386=8 +OS=568vq + +O=$(O_$(GOARCH)) GC=$(O)g -CC=$(O)c -w +CC=$(O)c -FVw AS=$(O)a -AR=$(O)ar +AR=6ar default: packages clean: - rm -f *.$O *.a $O.out + rm -f *.[$(OS)] *.a [$(OS)].out test: packages gotest @@ -33,8 +39,8 @@ coverage: packages O1=\ atoi.$O\ - itoa.$O\ decimal.$O\ + itoa.$O\ quote.$O\ O2=\ @@ -43,26 +49,30 @@ O2=\ O3=\ atof.$O\ -strconv.a: a1 a2 a3 -a1: $(O1) - $(AR) grc strconv.a atoi.$O itoa.$O decimal.$O quote.$O +phases: a1 a2 a3 +strconv.a: phases + +a1: $(O1) + $(AR) grc strconv.a atoi.$O decimal.$O itoa.$O quote.$O rm -f $(O1) -a2: $(O2) +a2: $(O2) $(AR) grc strconv.a ftoa.$O rm -f $(O2) -a3: $(O3) +a3: $(O3) $(AR) grc strconv.a atof.$O rm -f $(O3) + newpkg: clean $(AR) grc strconv.a $(O1): newpkg $(O2): a1 $(O3): a2 +$(O4): a3 nuke: clean rm -f $(GOROOT)/pkg/strconv.a @@ -71,4 +81,3 @@ packages: strconv.a install: packages cp strconv.a $(GOROOT)/pkg/strconv.a - |
