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 | 3e17b48cc202908701338c9d839bbb679d93a334 (patch) | |
| tree | 1d4cd32e489588dee8ecbc1c0c90d924ee9aeae5 /src/lib/json/Makefile | |
| parent | 5a1a92a0559e505bf7a8b50a56d9f28d4b3da765 (diff) | |
| download | golang-3e17b48cc202908701338c9d839bbb679d93a334.tar.gz | |
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/json/Makefile')
| -rw-r--r-- | src/lib/json/Makefile | 25 |
1 files changed, 17 insertions, 8 deletions
diff --git a/src/lib/json/Makefile b/src/lib/json/Makefile index 581f9d4b6..df4157a70 100644 --- a/src/lib/json/Makefile +++ b/src/lib/json/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 @@ -38,21 +44,25 @@ O2=\ generic.$O\ struct.$O\ -json.a: a1 a2 -a1: $(O1) +phases: a1 a2 +json.a: phases + +a1: $(O1) $(AR) grc json.a parse.$O rm -f $(O1) -a2: $(O2) +a2: $(O2) $(AR) grc json.a generic.$O struct.$O rm -f $(O2) + newpkg: clean $(AR) grc json.a $(O1): newpkg $(O2): a1 +$(O3): a2 nuke: clean rm -f $(GOROOT)/pkg/json.a @@ -61,4 +71,3 @@ packages: json.a install: packages cp json.a $(GOROOT)/pkg/json.a - |
