diff options
| author | Rob Pike <r@golang.org> | 2011-11-03 11:39:52 -0700 |
|---|---|---|
| committer | Rob Pike <r@golang.org> | 2011-11-03 11:39:52 -0700 |
| commit | f4cd80224a0b1b3ba7448f87fe048bcea9caae7f (patch) | |
| tree | 22a9d050bc722dfd42b03cad5e31efd9a67e3cc7 /src/pkg/Makefile | |
| parent | 11075ed893193a415d6b16cd28f06ad4bcc49092 (diff) | |
| download | go-f4cd80224a0b1b3ba7448f87fe048bcea9caae7f.tar.xz | |
encoding: move asn1, csv, gob, json, xml into encoding
This is Go 1 package renaming CL #1.
This one merely moves the source; the import strings will be
changed after the next weekly release.
The only edits are in Makefiles.
R=r, rsc
CC=golang-dev
https://golang.org/cl/5331060
Diffstat (limited to 'src/pkg/Makefile')
| -rw-r--r-- | src/pkg/Makefile | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/src/pkg/Makefile b/src/pkg/Makefile index 3d11502f24..105f3c4cfa 100644 --- a/src/pkg/Makefile +++ b/src/pkg/Makefile @@ -16,7 +16,6 @@ all: install DIRS=\ archive/tar\ archive/zip\ - asn1\ big\ bufio\ bytes\ @@ -62,19 +61,23 @@ DIRS=\ crypto/x509\ crypto/x509/pkix\ crypto/xtea\ - csv\ debug/dwarf\ debug/macho\ debug/elf\ debug/gosym\ debug/pe\ encoding/ascii85\ + encoding/asn1\ encoding/base32\ encoding/base64\ encoding/binary\ + encoding/csv\ encoding/git85\ + encoding/gob\ encoding/hex\ + encoding/json\ encoding/pem\ + encoding/xml\ errors\ exec\ exp/ebnf\ @@ -98,7 +101,6 @@ DIRS=\ go/printer\ go/scanner\ go/token\ - gob\ hash\ hash/adler32\ hash/crc32\ @@ -122,7 +124,6 @@ DIRS=\ index/suffixarray\ io\ io/ioutil\ - json\ log\ mail\ math\ @@ -172,7 +173,6 @@ DIRS=\ utf16\ utf8\ websocket\ - xml\ ../cmd/cgo\ ../cmd/godoc\ ../cmd/gofix\ @@ -236,6 +236,9 @@ TEST=\ BENCH=\ $(filter-out $(NOBENCH),$(TEST)) +CRAP: + echo $(DIRS) + clean.dirs: $(addsuffix .clean, $(DIRS)) install.dirs: $(addsuffix .install, $(DIRS)) nuke.dirs: $(addsuffix .nuke, $(DIRS)) |
