blob: 64abf9dcd66c50898d8734accbeef2af5e824de5 (
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
|
#
# 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 (c) 2014, Joyent, Inc. All rights reserved.
#
include $(SRC)/Makefile.master
MANSECT= 3vnd
MANFILES= vnd_create.3vnd \
vnd_errno.3vnd \
vnd_frameio_read.3vnd \
vnd_pollfd.3vnd \
vnd_prop_get.3vnd \
vnd_prop_iter.3vnd \
vnd_prop_writeable.3vnd \
vnd_walk.3vnd
MANLINKS= frameio_t.3vnd \
framevec_t.3vnd \
vnd_close.3vnd \
vnd_frameio_write.3vnd \
vnd_open.3vnd \
vnd_prop_set.3vnd \
vnd_prop_iter_f.3vnd \
vnd_strerror.3vnd \
vnd_strsyserror.3vnd \
vnd_syserrno.3vnd \
vnd_unlink.3vnd \
vnd_walk_cb_f.3vnd
# vnd_create.3vnd
vnd_open.3vnd := LINKSRC = vnd_create.3vnd
vnd_unlink.3vnd := LINKSRC = vnd_create.3vnd
vnd_close.3vnd := LINKSRC = vnd_create.3vnd
# vnd_errno.3vnd
vnd_strerror.3vnd := LINKSRC = vnd_errno.3vnd
vnd_syserrno.3vnd := LINKSRC = vnd_errno.3vnd
vnd_strsyserror.3vnd := LINKSRC = vnd_errno.3vnd
# vnd_frameio_read.3vnd
vnd_frameio_write.3vnd := LINKSRC = vnd_frameio_read.3vnd
framevec_t.3vnd := LINKSRC = vnd_frameio_read.3vnd
frameio_t.3vnd := LINKSRC = vnd_frameio_read.3vnd
# vnd_prop_get.3vnd
vnd_prop_set.3vnd := LINKSRC = vnd_prop_get.3vnd
# vnd_prop_iter.3vnd
vnd_prop_iter_f.3vnd := LINKSRC = vnd_prop_iter.3vnd
# vnd_walk.3vnd
vnd_walk_cb_f.3vnd := LINKSRC = vnd_walk.3vnd
.KEEP_STATE:
include $(SRC)/man/Makefile.man
install: $(ROOTMANFILES) $(ROOTMANLINKS)
|