Makefile 461 Bytes
Newer Older
1 2 3 4
# Copyright 2009 The Go Authors. All rights reserved.
# Use of this source code is governed by a BSD-style
# license that can be found in the LICENSE file.

5
include ../../Make.$(GOARCH)
Russ Cox's avatar
Russ Cox committed
6

7 8
TARG=net
GOFILES=\
9
	dial.go\
10 11 12
	dnsclient.go\
	dnsconfig.go\
	dnsmsg.go\
13
	newpollserver.go\
14 15
	fd.go\
	fd_$(GOOS).go\
16
	hosts.go\
17
	ip.go\
18
	ipsock.go\
19
	iprawsock.go\
20 21
	net.go\
	parse.go\
Russ Cox's avatar
Russ Cox committed
22
	pipe.go\
23
	port.go\
24
	sock.go\
Russ Cox's avatar
Russ Cox committed
25 26
	tcpsock.go\
	udpsock.go\
27
	unixsock.go\
28

29
include ../../Make.pkg