| OLD | NEW |
| 1 # Copyright 2009 The Go Authors. All rights reserved. | 1 # Copyright 2009 The Go Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style | 2 # Use of this source code is governed by a BSD-style |
| 3 # license that can be found in the LICENSE file. | 3 # license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 # After editing the DIRS= list or adding imports to any Go files | 5 # After editing the DIRS= list or adding imports to any Go files |
| 6 # in any of those directories, run: | 6 # in any of those directories, run: |
| 7 # | 7 # |
| 8 # ./deps.bash | 8 # ./deps.bash |
| 9 # | 9 # |
| 10 # to rebuild the dependency information in Make.deps. | 10 # to rebuild the dependency information in Make.deps. |
| (...skipping 21 matching lines...) Expand all Loading... |
| 32 container/heap\ | 32 container/heap\ |
| 33 container/list\ | 33 container/list\ |
| 34 container/ring\ | 34 container/ring\ |
| 35 container/vector\ | 35 container/vector\ |
| 36 crypto/aes\ | 36 crypto/aes\ |
| 37 crypto/block\ | 37 crypto/block\ |
| 38 crypto/blowfish\ | 38 crypto/blowfish\ |
| 39 crypto/hmac\ | 39 crypto/hmac\ |
| 40 crypto/md4\ | 40 crypto/md4\ |
| 41 crypto/md5\ | 41 crypto/md5\ |
| 42 crypto/rand\ |
| 42 crypto/rc4\ | 43 crypto/rc4\ |
| 43 crypto/ripemd160\ | 44 crypto/ripemd160\ |
| 44 crypto/rsa\ | 45 crypto/rsa\ |
| 45 crypto/sha1\ | 46 crypto/sha1\ |
| 46 crypto/sha256\ | 47 crypto/sha256\ |
| 47 crypto/sha512\ | 48 crypto/sha512\ |
| 48 crypto/subtle\ | 49 crypto/subtle\ |
| 49 crypto/tls\ | 50 crypto/tls\ |
| 50 crypto/x509\ | 51 crypto/x509\ |
| 51 crypto/xtea\ | 52 crypto/xtea\ |
| (...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 175 | 176 |
| 176 bench: bench.dirs ../../test/garbage.bench | 177 bench: bench.dirs ../../test/garbage.bench |
| 177 | 178 |
| 178 nuke: nuke.dirs | 179 nuke: nuke.dirs |
| 179 rm -rf "$(GOROOT)"/pkg/* | 180 rm -rf "$(GOROOT)"/pkg/* |
| 180 | 181 |
| 181 deps: | 182 deps: |
| 182 ./deps.bash | 183 ./deps.bash |
| 183 | 184 |
| 184 -include Make.deps | 185 -include Make.deps |
| OLD | NEW |