blob: cc231f60c4228f775dd4b338dcd662b259ed2f39 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
|
#
# This file and its contents are supplied under the terms of the
# Common Development and Distribution License ("CDDL"), version 1.0.
# You may only use this file in accordance with the terms of version
# 1.0 of the CDDL.
#
# A full copy of the text of the CDDL should have accompanied this
# source. A copy of the CDDL is also available via the Internet
# at http://www.illumos.org/license/CDDL.
#
#
# Copyright 2011, Richard Lowe
# Copyright 2013 Nexenta Systems, Inc. All rights reserved.
#
include $(SRC)/Makefile.master
MANSECT= 3xnet
MANFILES= accept.3xnet \
bind.3xnet \
connect.3xnet \
endhostent.3xnet \
endnetent.3xnet \
endprotoent.3xnet \
endservent.3xnet \
freeaddrinfo.3xnet \
gai_strerror.3xnet \
gethostname.3xnet \
getnameinfo.3xnet \
getpeername.3xnet \
getsockname.3xnet \
getsockopt.3xnet \
htonl.3xnet \
if_nametoindex.3xnet \
inet_addr.3xnet \
inet_ntop.3xnet \
listen.3xnet \
recv.3xnet \
recvfrom.3xnet \
recvmsg.3xnet \
send.3xnet \
sendmsg.3xnet \
sendto.3xnet \
setsockopt.3xnet \
shutdown.3xnet \
sockatmark.3xnet \
socket.3xnet \
socketpair.3xnet
MANLINKS= getaddrinfo.3xnet \
gethostbyaddr.3xnet \
gethostbyname.3xnet \
gethostent.3xnet \
getnetbyaddr.3xnet \
getnetbyname.3xnet \
getnetent.3xnet \
getprotobyname.3xnet \
getprotobynumber.3xnet \
getprotoent.3xnet \
getservbyname.3xnet \
getservbyport.3xnet \
getservent.3xnet \
htonll.3xnet \
htons.3xnet \
if_freenameindex.3xnet \
if_indextoname.3xnet \
if_nameindex.3xnet \
inet_lnaof.3xnet \
inet_makeaddr.3xnet \
inet_netof.3xnet \
inet_network.3xnet \
inet_ntoa.3xnet \
inet_pton.3xnet \
ntohl.3xnet \
ntohll.3xnet \
ntohs.3xnet \
sethostent.3xnet \
setnetent.3xnet \
setprotoent.3xnet \
setservent.3xnet
getaddrinfo.3xnet := LINKSRC = freeaddrinfo.3xnet
gethostbyaddr.3xnet := LINKSRC = endhostent.3xnet
gethostbyname.3xnet := LINKSRC = endhostent.3xnet
gethostent.3xnet := LINKSRC = endhostent.3xnet
getnetbyaddr.3xnet := LINKSRC = endnetent.3xnet
getnetbyname.3xnet := LINKSRC = endnetent.3xnet
getnetent.3xnet := LINKSRC = endnetent.3xnet
getprotobyname.3xnet := LINKSRC = endprotoent.3xnet
getprotobynumber.3xnet := LINKSRC = endprotoent.3xnet
getprotoent.3xnet := LINKSRC = endprotoent.3xnet
getservbyname.3xnet := LINKSRC = endservent.3xnet
getservbyport.3xnet := LINKSRC = endservent.3xnet
getservent.3xnet := LINKSRC = endservent.3xnet
htonll.3xnet := LINKSRC = htonl.3xnet
htons.3xnet := LINKSRC = htonl.3xnet
if_freenameindex.3xnet := LINKSRC = if_nametoindex.3xnet
if_indextoname.3xnet := LINKSRC = if_nametoindex.3xnet
if_nameindex.3xnet := LINKSRC = if_nametoindex.3xnet
inet_lnaof.3xnet := LINKSRC = inet_addr.3xnet
inet_makeaddr.3xnet := LINKSRC = inet_addr.3xnet
inet_netof.3xnet := LINKSRC = inet_addr.3xnet
inet_network.3xnet := LINKSRC = inet_addr.3xnet
inet_ntoa.3xnet := LINKSRC = inet_addr.3xnet
inet_pton.3xnet := LINKSRC = inet_ntop.3xnet
ntohl.3xnet := LINKSRC = htonl.3xnet
ntohll.3xnet := LINKSRC = htonl.3xnet
ntohs.3xnet := LINKSRC = htonl.3xnet
sethostent.3xnet := LINKSRC = endhostent.3xnet
setnetent.3xnet := LINKSRC = endnetent.3xnet
setprotoent.3xnet := LINKSRC = endprotoent.3xnet
setservent.3xnet := LINKSRC = endservent.3xnet
.KEEP_STATE:
include $(SRC)/man/Makefile.man
install: $(ROOTMANFILES) $(ROOTMANLINKS)
|