| 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 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 91 syscall\ | 91 syscall\ |
| 92 tabwriter\ | 92 tabwriter\ |
| 93 template\ | 93 template\ |
| 94 testing\ | 94 testing\ |
| 95 testing/iotest\ | 95 testing/iotest\ |
| 96 testing/quick\ | 96 testing/quick\ |
| 97 testing/script\ | 97 testing/script\ |
| 98 time\ | 98 time\ |
| 99 unicode\ | 99 unicode\ |
| 100 utf8\ | 100 utf8\ |
| 101 xgb\ |
| 101 xml\ | 102 xml\ |
| 102 | 103 |
| 103 NOTEST=\ | 104 NOTEST=\ |
| 104 debug/proc\ | 105 debug/proc\ |
| 105 go/ast\ | 106 go/ast\ |
| 106 go/doc\ | 107 go/doc\ |
| 107 go/token\ | 108 go/token\ |
| 108 hash\ | 109 hash\ |
| 109 image\ | 110 image\ |
| 110 malloc\ | 111 malloc\ |
| 111 rand\ | 112 rand\ |
| 112 runtime\ | 113 runtime\ |
| 113 syscall\ | 114 syscall\ |
| 114 testing/iotest\ | 115 testing/iotest\ |
| 116 xgb\ |
| 115 | 117 |
| 116 TEST=\ | 118 TEST=\ |
| 117 $(filter-out $(NOTEST),$(DIRS)) | 119 $(filter-out $(NOTEST),$(DIRS)) |
| 118 | 120 |
| 119 clean.dirs: $(addsuffix .clean, $(DIRS)) | 121 clean.dirs: $(addsuffix .clean, $(DIRS)) |
| 120 install.dirs: $(addsuffix .install, $(DIRS)) | 122 install.dirs: $(addsuffix .install, $(DIRS)) |
| 121 nuke.dirs: $(addsuffix .nuke, $(DIRS)) | 123 nuke.dirs: $(addsuffix .nuke, $(DIRS)) |
| 122 test.dirs: $(addsuffix .test, $(TEST)) | 124 test.dirs: $(addsuffix .test, $(TEST)) |
| 123 | 125 |
| 124 %.clean: | 126 %.clean: |
| (...skipping 14 matching lines...) Expand all Loading... |
| 139 | 141 |
| 140 test: test.dirs | 142 test: test.dirs |
| 141 | 143 |
| 142 nuke: nuke.dirs | 144 nuke: nuke.dirs |
| 143 rm -rf "$(GOROOT)"/pkg/* | 145 rm -rf "$(GOROOT)"/pkg/* |
| 144 | 146 |
| 145 deps: | 147 deps: |
| 146 ./deps.bash | 148 ./deps.bash |
| 147 | 149 |
| 148 -include Make.deps | 150 -include Make.deps |
| OLD | NEW |