Commit ecc31764 authored by Mikio Hara's avatar Mikio Hara

net: sort Makefile entries

R=golang-dev, jsing
CC=golang-dev
https://golang.org/cl/5493058
parent 8fa8ebf8
...@@ -21,14 +21,14 @@ GOFILES=\ ...@@ -21,14 +21,14 @@ GOFILES=\
udpsock.go\ udpsock.go\
unixsock.go\ unixsock.go\
GOFILES_freebsd=\ GOFILES_darwin=\
dnsclient_unix.go\ dnsclient_unix.go\
dnsconfig.go\ dnsconfig.go\
fd.go\ fd.go\
fd_$(GOOS).go\ fd_$(GOOS).go\
file.go\ file.go\
interface_bsd.go\ interface_bsd.go\
interface_freebsd.go\ interface_darwin.go\
iprawsock_posix.go\ iprawsock_posix.go\
ipsock_posix.go\ ipsock_posix.go\
lookup_unix.go\ lookup_unix.go\
...@@ -42,21 +42,21 @@ GOFILES_freebsd=\ ...@@ -42,21 +42,21 @@ GOFILES_freebsd=\
unixsock_posix.go\ unixsock_posix.go\
ifeq ($(CGO_ENABLED),1) ifeq ($(CGO_ENABLED),1)
CGOFILES_freebsd=\ CGOFILES_darwin=\
cgo_bsd.go\ cgo_bsd.go\
cgo_unix.go cgo_unix.go
else else
GOFILES_freebsd+=cgo_stub.go GOFILES_darwin+=cgo_stub.go
endif endif
GOFILES_darwin=\ GOFILES_freebsd=\
dnsclient_unix.go\ dnsclient_unix.go\
dnsconfig.go\ dnsconfig.go\
fd.go\ fd.go\
fd_$(GOOS).go\ fd_$(GOOS).go\
file.go\ file.go\
interface_bsd.go\ interface_bsd.go\
interface_darwin.go\ interface_freebsd.go\
iprawsock_posix.go\ iprawsock_posix.go\
ipsock_posix.go\ ipsock_posix.go\
lookup_unix.go\ lookup_unix.go\
...@@ -70,11 +70,11 @@ GOFILES_darwin=\ ...@@ -70,11 +70,11 @@ GOFILES_darwin=\
unixsock_posix.go\ unixsock_posix.go\
ifeq ($(CGO_ENABLED),1) ifeq ($(CGO_ENABLED),1)
CGOFILES_darwin=\ CGOFILES_freebsd=\
cgo_bsd.go\ cgo_bsd.go\
cgo_unix.go cgo_unix.go
else else
GOFILES_darwin+=cgo_stub.go GOFILES_freebsd+=cgo_stub.go
endif endif
GOFILES_linux=\ GOFILES_linux=\
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment