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 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
74 encoding/base64\ | 74 encoding/base64\ |
75 encoding/binary\ | 75 encoding/binary\ |
76 encoding/git85\ | 76 encoding/git85\ |
77 encoding/hex\ | 77 encoding/hex\ |
78 encoding/pem\ | 78 encoding/pem\ |
79 exec\ | 79 exec\ |
80 exp/datafmt\ | 80 exp/datafmt\ |
81 exp/eval\ | 81 exp/eval\ |
82 exp/gui\ | 82 exp/gui\ |
83 exp/gui/x11\ | 83 exp/gui/x11\ |
| 84 exp/regexp/syntax\ |
84 expvar\ | 85 expvar\ |
85 flag\ | 86 flag\ |
86 fmt\ | 87 fmt\ |
87 go/ast\ | 88 go/ast\ |
88 go/build\ | 89 go/build\ |
89 go/doc\ | 90 go/doc\ |
90 go/parser\ | 91 go/parser\ |
91 go/printer\ | 92 go/printer\ |
92 go/scanner\ | 93 go/scanner\ |
93 go/token\ | 94 go/token\ |
(...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
271 | 272 |
272 deps: | 273 deps: |
273 ./deps.bash | 274 ./deps.bash |
274 | 275 |
275 echo-dirs: | 276 echo-dirs: |
276 @echo $(DIRS) | 277 @echo $(DIRS) |
277 | 278 |
278 -include Make.deps | 279 -include Make.deps |
279 | 280 |
280 runtime/cgo.install: ../cmd/cgo.install | 281 runtime/cgo.install: ../cmd/cgo.install |
LEFT | RIGHT |