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 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
63 go/scanner\ | 63 go/scanner\ |
64 go/token\ | 64 go/token\ |
65 gob\ | 65 gob\ |
66 hash\ | 66 hash\ |
67 hash/adler32\ | 67 hash/adler32\ |
68 hash/crc32\ | 68 hash/crc32\ |
69 http\ | 69 http\ |
70 image\ | 70 image\ |
71 image/png\ | 71 image/png\ |
72 io\ | 72 io\ |
| 73 io/ioutil\ |
73 json\ | 74 json\ |
74 log\ | 75 log\ |
75 malloc\ | 76 malloc\ |
76 math\ | 77 math\ |
77 net\ | 78 net\ |
78 once\ | 79 once\ |
79 os\ | 80 os\ |
80 patch\ | 81 patch\ |
81 path\ | 82 path\ |
82 rand\ | 83 rand\ |
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
142 | 143 |
143 test: test.dirs | 144 test: test.dirs |
144 | 145 |
145 nuke: nuke.dirs | 146 nuke: nuke.dirs |
146 rm -rf "$(GOROOT)"/pkg/* | 147 rm -rf "$(GOROOT)"/pkg/* |
147 | 148 |
148 deps: | 149 deps: |
149 ./deps.bash | 150 ./deps.bash |
150 | 151 |
151 -include Make.deps | 152 -include Make.deps |
OLD | NEW |