Delta Between Two Patch Sets: src/pkg/net/Makefile
Issue 1600041 :
code review 1600041: net: initial attempt to implement windows version (Closed)
Left Patch Set: code review 1600041: net: initial attempt to implement windows version
Right Patch Set: code review 1600041: net: initial attempt to implement windows version
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/pkg/net/Makefile
src/pkg/net/fd_windows.go
src/pkg/syscall/mksyscall_windows.sh
src/pkg/syscall/syscall_windows.go
src/pkg/syscall/zerrors_windows_386.go
src/pkg/syscall/zsyscall_windows_386.go
src/pkg/syscall/ztypes_windows_386.go
LEFT RIGHT
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 include ../../Make.$(GOARCH) 5 include ../../Make.$(GOARCH)
6 6
7 TARG=net 7 TARG=net
8 GOFILES=\ 8 GOFILES=\
9 dial.go\
9 dnsclient.go\ 10 dnsclient.go\
10 dnsconfig.go\ 11 dnsconfig.go\
11 dnsmsg.go\ 12 dnsmsg.go\
12 fd_$(GOOS).go\ 13 fd_$(GOOS).go\
13 hosts.go\ 14 hosts.go\
14 ip.go\ 15 ip.go\
15 ipsock.go\ 16 ipsock.go\
16 iprawsock.go\ 17 iprawsock.go\
17 net.go\ 18 net.go\
18 parse.go\ 19 parse.go\
19 pipe.go\ 20 pipe.go\
20 port.go\ 21 port.go\
21 sock.go\ 22 sock.go\
22 tcpsock.go\ 23 tcpsock.go\
23 udpsock.go\ 24 udpsock.go\
24 unixsock.go\ 25 unixsock.go\
25 26
26 GOFILES_freebsd=\ 27 GOFILES_freebsd=\
28 newpollserver.go\
27 fd.go\ 29 fd.go\
28 30
29 GOFILES_darwin=\ 31 GOFILES_darwin=\
32 newpollserver.go\
30 fd.go\ 33 fd.go\
31 34
32 GOFILES_linux=\ 35 GOFILES_linux=\
36 newpollserver.go\
33 fd.go\ 37 fd.go\
34 38
35 GOFILES_nacl=\ 39 GOFILES_nacl=\
40 newpollserver.go\
36 fd.go\ 41 fd.go\
37 42
38 GOFILES+=$(GOFILES_$(GOOS)) 43 GOFILES+=$(GOFILES_$(GOOS))
39 44
40 include ../../Make.pkg 45 include ../../Make.pkg
LEFT RIGHT