Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(3)

Delta Between Two Patch Sets: src/pkg/Makefile

Issue 4259065: code review 4259065: gotype: commandline tool to typecheck go programs (Closed)
Left Patch Set: diff -r b8d901732d17 https://go.googlecode.com/hg/ Created 14 years ago
Right Patch Set: diff -r c05f1a235478 https://go.googlecode.com/hg/ Created 14 years ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
Left: Side by side diff | Download
Right: Side by side diff | Download
« src/cmd/gotype/gotype.go ('K') | « src/cmd/gotype/gotype.go ('k') | no next file » | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
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 136 matching lines...) Expand 10 before | Expand all | Expand 10 after
147 testing/script\ 147 testing/script\
148 time\ 148 time\
149 try\ 149 try\
150 unicode\ 150 unicode\
151 utf16\ 151 utf16\
152 utf8\ 152 utf8\
153 websocket\ 153 websocket\
154 xml\ 154 xml\
155 ../cmd/cgo\ 155 ../cmd/cgo\
156 ../cmd/ebnflint\ 156 ../cmd/ebnflint\
157 ../cmd/gocheck\
158 ../cmd/godoc\ 157 ../cmd/godoc\
159 ../cmd/gofmt\ 158 ../cmd/gofmt\
159 ../cmd/gotype\
160 ../cmd/goinstall\ 160 ../cmd/goinstall\
161 ../cmd/govet\ 161 ../cmd/govet\
162 ../cmd/goyacc\ 162 ../cmd/goyacc\
163 ../cmd/hgpatch\ 163 ../cmd/hgpatch\
164 164
165 ifeq ($(GOOS),linux) 165 ifeq ($(GOOS),linux)
166 DIRS+=\ 166 DIRS+=\
167 os/inotify\ 167 os/inotify\
168 168
169 endif 169 endif
(...skipping 13 matching lines...) Expand all
183 net/dict\ 183 net/dict\
184 rand\ 184 rand\
185 runtime/cgo\ 185 runtime/cgo\
186 runtime/pprof\ 186 runtime/pprof\
187 syscall\ 187 syscall\
188 testing\ 188 testing\
189 testing/iotest\ 189 testing/iotest\
190 try\ 190 try\
191 ../cmd/cgo\ 191 ../cmd/cgo\
192 ../cmd/ebnflint\ 192 ../cmd/ebnflint\
193 ../cmd/gocheck\
194 ../cmd/godoc\ 193 ../cmd/godoc\
195 ../cmd/gofmt\ 194 ../cmd/gofmt\
195 ../cmd/gotype\
196 ../cmd/govet\ 196 ../cmd/govet\
197 ../cmd/goyacc\ 197 ../cmd/goyacc\
198 ../cmd/hgpatch\ 198 ../cmd/hgpatch\
199 199
200 NOBENCH=\ 200 NOBENCH=\
201 container/vector\ 201 container/vector\
202 202
203 # Disable tests that depend on an external network. 203 # Disable tests that depend on an external network.
204 ifeq ($(DISABLE_NET_TESTS),1) 204 ifeq ($(DISABLE_NET_TESTS),1)
205 NOTEST+=http net syslog 205 NOTEST+=net syslog
206 endif 206 endif
207 207
208 # Disable tests that windows cannot run yet. 208 # Disable tests that windows cannot run yet.
209 ifeq ($(GOOS),windows) 209 ifeq ($(GOOS),windows)
210 NOTEST+=os/signal # no signals 210 NOTEST+=os/signal # no signals
211 NOTEST+=path # tree walking does not work 211 NOTEST+=path # tree walking does not work
212 NOTEST+=syslog # no network 212 NOTEST+=syslog # no network
213 NOTEST+=time # no syscall.Kill, syscall.SIGCHLD for sleep tests 213 NOTEST+=time # no syscall.Kill, syscall.SIGCHLD for sleep tests
214 endif 214 endif
215 215
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
253 253
254 deps: 254 deps:
255 ./deps.bash 255 ./deps.bash
256 256
257 echo-dirs: 257 echo-dirs:
258 @echo $(DIRS) 258 @echo $(DIRS)
259 259
260 -include Make.deps 260 -include Make.deps
261 261
262 runtime/cgo.install: ../cmd/cgo.install 262 runtime/cgo.install: ../cmd/cgo.install
LEFTRIGHT

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b