Delta Between Two Patch Sets: src/cmd/gofix/Makefile
Issue 5316078 :
code review 5316078: gofix: add go1pkgrename (Closed)
Left Patch Set: diff -r 62a88d392930 https://go.googlecode.com/hg/
Right Patch Set: diff -r eb468998b969 https://go.googlecode.com/hg/
Use n/p to move between diff chunks;
N/P to move between comments.
Please Sign in to add in-line comments.
Jump to:
src/cmd/gofix/Makefile
src/cmd/gofix/go1pkgrename.go
src/cmd/gofix/go1pkgrename_test.go
LEFT RIGHT
1 # Copyright 2011 The Go Authors. All rights reserved. 1 # Copyright 2011 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 include ../../Make.inc 5 include ../../Make.inc
6 6
7 TARG=gofix 7 TARG=gofix
8 GOFILES=\ 8 GOFILES=\
9 error.go\ 9 error.go\
10 filepath.go\ 10 filepath.go\
11 fix.go\ 11 fix.go\
12 » go1rename.go\ 12 » go1pkgrename.go\
13 » htmlerr.go\
13 httpfinalurl.go\ 14 httpfinalurl.go\
14 httpfs.go\ 15 httpfs.go\
15 httpheaders.go\ 16 httpheaders.go\
16 httpserver.go\ 17 httpserver.go\
17 imagecolor.go\ 18 imagecolor.go\
18 imagenew.go\ 19 imagenew.go\
19 iocopyn.go\ 20 iocopyn.go\
20 main.go\ 21 main.go\
21 mapdelete.go\ 22 mapdelete.go\
22 math.go\ 23 math.go\
(...skipping 10 matching lines...) Expand all Loading...
33 typecheck.go\ 34 typecheck.go\
34 url.go\ 35 url.go\
35 36
36 include ../../Make.cmd 37 include ../../Make.cmd
37 38
38 test: 39 test:
39 gotest 40 gotest
40 41
41 testshort: 42 testshort:
42 gotest -test.short 43 gotest -test.short
LEFT RIGHT