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 190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
201 net/dict\ | 201 net/dict\ |
202 rand\ | 202 rand\ |
203 runtime/cgo\ | 203 runtime/cgo\ |
204 syscall\ | 204 syscall\ |
205 testing\ | 205 testing\ |
206 testing/iotest\ | 206 testing/iotest\ |
207 try\ | 207 try\ |
208 ../cmd/cgo\ | 208 ../cmd/cgo\ |
209 ../cmd/ebnflint\ | 209 ../cmd/ebnflint\ |
210 ../cmd/godoc\ | 210 ../cmd/godoc\ |
| 211 ../cmd/goinstall\ |
211 ../cmd/gotest\ | 212 ../cmd/gotest\ |
212 ../cmd/govet\ | 213 ../cmd/govet\ |
213 ../cmd/goyacc\ | 214 ../cmd/goyacc\ |
214 ../cmd/hgpatch\ | 215 ../cmd/hgpatch\ |
215 | 216 |
216 NOBENCH+=\ | 217 NOBENCH+=\ |
217 container/vector\ | 218 container/vector\ |
218 | 219 |
219 # Disable tests that windows cannot run yet. | 220 # Disable tests that windows cannot run yet. |
220 ifeq ($(GOOS),windows) | 221 ifeq ($(GOOS),windows) |
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
272 | 273 |
273 deps: | 274 deps: |
274 ./deps.bash | 275 ./deps.bash |
275 | 276 |
276 echo-dirs: | 277 echo-dirs: |
277 @echo $(DIRS) | 278 @echo $(DIRS) |
278 | 279 |
279 -include Make.deps | 280 -include Make.deps |
280 | 281 |
281 runtime/cgo.install: ../cmd/cgo.install | 282 runtime/cgo.install: ../cmd/cgo.install |
LEFT | RIGHT |