Side by Side Diff: src/cmd/gofix/Makefile
Issue 4815074 :
code review 4815074: net: join and leave a IPv6 group address, on a specific... (Closed)
Patch Set: diff -r 508513bbf607 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/netudpgroup.go
src/cmd/gofix/netudpgroup_test.go
src/pkg/net/multicast_test.go
src/pkg/net/udpsock_plan9.go
src/pkg/net/udpsock_posix.go
OLD NEW
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 filepath.go\ 9 filepath.go\
10 fix.go\ 10 fix.go\
11 httpfinalurl.go\ 11 httpfinalurl.go\
12 httpfs.go\ 12 httpfs.go\
13 httpheaders.go\ 13 httpheaders.go\
14 httpserver.go\ 14 httpserver.go\
15 main.go\ 15 main.go\
16 netdial.go\ 16 netdial.go\
17 netudpgroup.go\
17 oserrorstring.go\ 18 oserrorstring.go\
18 osopen.go\ 19 osopen.go\
19 procattr.go\ 20 procattr.go\
20 reflect.go\ 21 reflect.go\
21 signal.go\ 22 signal.go\
22 sorthelpers.go\ 23 sorthelpers.go\
23 sortslice.go\ 24 sortslice.go\
24 stringssplit.go\ 25 stringssplit.go\
25 typecheck.go\ 26 typecheck.go\
26 url.go\ 27 url.go\
27 28
28 include ../../Make.cmd 29 include ../../Make.cmd
29 30
30 test: 31 test:
31 gotest 32 gotest
32 33
33 testshort: 34 testshort:
34 gotest -test.short 35 gotest -test.short
OLD NEW