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 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
132 %.test: | 132 %.test: |
133 +cd $* && gomake test | 133 +cd $* && gomake test |
134 | 134 |
135 clean: clean.dirs | 135 clean: clean.dirs |
136 | 136 |
137 install: install.dirs | 137 install: install.dirs |
138 | 138 |
139 test: test.dirs | 139 test: test.dirs |
140 | 140 |
141 nuke: nuke.dirs | 141 nuke: nuke.dirs |
142 » rm -rf $(GOROOT)/pkg/* | 142 » rm -rf "$(GOROOT)"/pkg/* |
143 | 143 |
144 deps: | 144 deps: |
145 ./deps.bash | 145 ./deps.bash |
146 | 146 |
147 include Make.deps | 147 include Make.deps |
OLD | NEW |