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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
48 encoding/binary\ | 48 encoding/binary\ |
49 encoding/git85\ | 49 encoding/git85\ |
50 encoding/hex\ | 50 encoding/hex\ |
51 encoding/pem\ | 51 encoding/pem\ |
52 exec\ | 52 exec\ |
53 exp/datafmt\ | 53 exp/datafmt\ |
54 exp/draw\ | 54 exp/draw\ |
55 exp/eval\ | 55 exp/eval\ |
56 exp/exception\ | 56 exp/exception\ |
57 exp/iterable\ | 57 exp/iterable\ |
| 58 exp/parser\ |
58 expvar\ | 59 expvar\ |
59 flag\ | 60 flag\ |
60 fmt\ | 61 fmt\ |
61 go/ast\ | 62 go/ast\ |
62 go/doc\ | 63 go/doc\ |
63 go/parser\ | 64 go/parser\ |
64 go/printer\ | 65 go/printer\ |
65 go/scanner\ | 66 go/scanner\ |
66 go/token\ | 67 go/token\ |
67 gob\ | 68 gob\ |
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
146 | 147 |
147 test: test.dirs | 148 test: test.dirs |
148 | 149 |
149 nuke: nuke.dirs | 150 nuke: nuke.dirs |
150 rm -rf "$(GOROOT)"/pkg/* | 151 rm -rf "$(GOROOT)"/pkg/* |
151 | 152 |
152 deps: | 153 deps: |
153 ./deps.bash | 154 ./deps.bash |
154 | 155 |
155 -include Make.deps | 156 -include Make.deps |
OLD | NEW |