mirror of https://github.com/golang/go.git
net: sort Makefile entries
R=golang-dev, jsing CC=golang-dev https://golang.org/cl/5493058
This commit is contained in:
parent
8fa8ebf834
commit
ecc317647b
|
|
@ -21,34 +21,6 @@ GOFILES=\
|
|||
udpsock.go\
|
||||
unixsock.go\
|
||||
|
||||
GOFILES_freebsd=\
|
||||
dnsclient_unix.go\
|
||||
dnsconfig.go\
|
||||
fd.go\
|
||||
fd_$(GOOS).go\
|
||||
file.go\
|
||||
interface_bsd.go\
|
||||
interface_freebsd.go\
|
||||
iprawsock_posix.go\
|
||||
ipsock_posix.go\
|
||||
lookup_unix.go\
|
||||
newpollserver.go\
|
||||
port.go\
|
||||
sendfile_stub.go\
|
||||
sock.go\
|
||||
sock_bsd.go\
|
||||
tcpsock_posix.go\
|
||||
udpsock_posix.go\
|
||||
unixsock_posix.go\
|
||||
|
||||
ifeq ($(CGO_ENABLED),1)
|
||||
CGOFILES_freebsd=\
|
||||
cgo_bsd.go\
|
||||
cgo_unix.go
|
||||
else
|
||||
GOFILES_freebsd+=cgo_stub.go
|
||||
endif
|
||||
|
||||
GOFILES_darwin=\
|
||||
dnsclient_unix.go\
|
||||
dnsconfig.go\
|
||||
|
|
@ -77,6 +49,34 @@ else
|
|||
GOFILES_darwin+=cgo_stub.go
|
||||
endif
|
||||
|
||||
GOFILES_freebsd=\
|
||||
dnsclient_unix.go\
|
||||
dnsconfig.go\
|
||||
fd.go\
|
||||
fd_$(GOOS).go\
|
||||
file.go\
|
||||
interface_bsd.go\
|
||||
interface_freebsd.go\
|
||||
iprawsock_posix.go\
|
||||
ipsock_posix.go\
|
||||
lookup_unix.go\
|
||||
newpollserver.go\
|
||||
port.go\
|
||||
sendfile_stub.go\
|
||||
sock.go\
|
||||
sock_bsd.go\
|
||||
tcpsock_posix.go\
|
||||
udpsock_posix.go\
|
||||
unixsock_posix.go\
|
||||
|
||||
ifeq ($(CGO_ENABLED),1)
|
||||
CGOFILES_freebsd=\
|
||||
cgo_bsd.go\
|
||||
cgo_unix.go
|
||||
else
|
||||
GOFILES_freebsd+=cgo_stub.go
|
||||
endif
|
||||
|
||||
GOFILES_linux=\
|
||||
dnsclient_unix.go\
|
||||
dnsconfig.go\
|
||||
|
|
|
|||
Loading…
Reference in New Issue