blob: f73a157f47ca1dc34b26cab3e0da2c690adf5514 (
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
|
#
# 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= 7p
MANFILES= arp.7p \
dlpi.7p \
icmp.7p \
icmp6.7p \
if_tcp.7p \
inet.7p \
inet6.7p \
ip.7p \
ip6.7p \
ipsec.7p \
ipsecah.7p \
ipsecesp.7p \
ndp.7p \
pf_key.7p \
rarp.7p \
route.7p \
routing.7p \
sctp.7p \
sip.7p \
slp.7p \
tcp.7p \
udp.7p \
vxlan.7p
MANLINKS= AH.7p \
ARP.7p \
ESP.7p \
ICMP.7p \
IP.7p \
NDP.7p \
RARP.7p \
SCTP.7p \
TCP.7p \
UDP.7p \
VXLAN.7p \
if.7p
ARP.7p := LINKSRC = arp.7p
ICMP.7p := LINKSRC = icmp.7p
if.7p := LINKSRC = if_tcp.7p
IP.7p := LINKSRC = ip.7p
AH.7p := LINKSRC = ipsecah.7p
ESP.7p := LINKSRC = ipsecesp.7p
NDP.7p := LINKSRC = ndp.7p
RARP.7p := LINKSRC = rarp.7p
SCTP.7p := LINKSRC = sctp.7p
TCP.7p := LINKSRC = tcp.7p
UDP.7p := LINKSRC = udp.7p
VXLAN.7p := LINKSRC = vxlan.7p
.KEEP_STATE:
include $(SRC)/man/Makefile.man
install: $(ROOTMANFILES) $(ROOTMANLINKS)
|