~john-koepi/ubuntu/trusty/golang/default

« back to all changes in this revision

Viewing changes to src/pkg/net/Makefile

  • Committer: Bazaar Package Importer
  • Author(s): Ondřej Surý
  • Date: 2011-08-03 17:04:59 UTC
  • mfrom: (14.1.2 sid)
  • Revision ID: james.westby@ubuntu.com-20110803170459-wzd99m3567y80ila
Tags: 1:59-1
* Imported Upstream version 59
* Refresh patches to a new release
* Fix FTBFS on ARM (Closes: #634270)
* Update version.bash to work with Debian packaging and not hg
  repository

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
TARG=net
8
8
GOFILES=\
9
9
        dial.go\
 
10
        dnsclient.go\
10
11
        dnsmsg.go\
11
12
        fd_$(GOOS).go\
12
13
        hosts.go\
14
15
        ip.go\
15
16
        ipsock.go\
16
17
        iprawsock.go\
17
 
        lookup.go\
18
18
        net.go\
19
19
        parse.go\
20
20
        pipe.go\
24
24
        unixsock.go\
25
25
 
26
26
GOFILES_freebsd=\
27
 
        dnsclient.go\
 
27
        dnsclient_unix.go\
28
28
        dnsconfig.go\
29
29
        fd.go\
30
30
        file.go\
31
31
        interface_bsd.go\
 
32
        lookup_unix.go\
32
33
        newpollserver.go\
33
34
        port.go\
34
35
        sendfile_stub.go\
39
40
        cgo_unix.go\
40
41
 
41
42
GOFILES_darwin=\
42
 
        dnsclient.go\
 
43
        dnsclient_unix.go\
43
44
        dnsconfig.go\
44
45
        fd.go\
45
46
        file.go\
46
47
        interface_bsd.go\
 
48
        lookup_unix.go\
47
49
        newpollserver.go\
48
50
        port.go\
49
51
        sendfile_stub.go\
54
56
        cgo_unix.go\
55
57
 
56
58
GOFILES_linux=\
57
 
        dnsclient.go\
 
59
        dnsclient_unix.go\
58
60
        dnsconfig.go\
59
61
        fd.go\
60
62
        file.go\
61
63
        interface_linux.go\
 
64
        lookup_unix.go\
62
65
        newpollserver.go\
63
66
        port.go\
64
67
        sendfile_linux.go\
66
69
 
67
70
GOFILES_plan9=\
68
71
        interface_stub.go\
 
72
        lookup_unix.go\
69
73
        sendfile_stub.go\
70
74
 
71
75
ifeq ($(GOARCH),arm)
78
82
endif
79
83
 
80
84
GOFILES_windows=\
81
 
        cgo_stub.go\
82
85
        file_windows.go\
83
 
        interface_stub.go\
84
 
        resolv_windows.go\
85
 
        sendfile_stub.go\
 
86
        interface_windows.go\
 
87
        lookup_windows.go\
 
88
        sendfile_windows.go\
86
89
        sock_windows.go\
87
90
 
88
91
GOFILES+=$(GOFILES_$(GOOS))