LEFT | RIGHT |
(no file at all) | |
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 15 matching lines...) Expand all Loading... |
26 compress/zlib\ | 26 compress/zlib\ |
27 container/heap\ | 27 container/heap\ |
28 container/list\ | 28 container/list\ |
29 container/ring\ | 29 container/ring\ |
30 container/vector\ | 30 container/vector\ |
31 crypto/aes\ | 31 crypto/aes\ |
32 crypto/block\ | 32 crypto/block\ |
33 crypto/blowfish\ | 33 crypto/blowfish\ |
34 crypto/cast5\ | 34 crypto/cast5\ |
35 crypto/cipher\ | 35 crypto/cipher\ |
| 36 crypto/dsa\ |
36 crypto/elliptic\ | 37 crypto/elliptic\ |
37 crypto/hmac\ | 38 crypto/hmac\ |
38 crypto/md4\ | 39 crypto/md4\ |
39 crypto/md5\ | 40 crypto/md5\ |
40 crypto/ocsp\ | 41 crypto/ocsp\ |
41 crypto/rand\ | 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\ |
(...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
235 | 236 |
236 deps: | 237 deps: |
237 ./deps.bash | 238 ./deps.bash |
238 | 239 |
239 echo-dirs: | 240 echo-dirs: |
240 @echo $(DIRS) | 241 @echo $(DIRS) |
241 | 242 |
242 -include Make.deps | 243 -include Make.deps |
243 | 244 |
244 runtime/cgo.install: ../cmd/cgo.install | 245 runtime/cgo.install: ../cmd/cgo.install |
LEFT | RIGHT |