summaryrefslogtreecommitdiffstats
path: root/lib/libnv/Makefile
blob: 61b158fe57c42d473a60e1f1f92214c0df13c1f0 (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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
# $FreeBSD$

SHLIBDIR?= /lib

.include <src.opts.mk>

LIB=	nv
SHLIB_MAJOR= 0

SRCS=	dnvlist.c
SRCS+=	msgio.c
SRCS+=	nvlist.c
SRCS+=	nvpair.c

INCS=	dnv.h
INCS+=	nv.h

MAN+=	nv.3

MLINKS+=nv.3 libnv.3 \
	nv.3 nvlist.3
MLINKS+=nv.3 nvlist_create.3 \
	nv.3 nvlist_destroy.3 \
	nv.3 nvlist_error.3 \
	nv.3 nvlist_set_error.3 \
	nv.3 nvlist_empty.3 \
	nv.3 nvlist_clone.3 \
	nv.3 nvlist_dump.3 \
	nv.3 nvlist_fdump.3 \
	nv.3 nvlist_size.3 \
	nv.3 nvlist_pack.3 \
	nv.3 nvlist_unpack.3 \
	nv.3 nvlist_send.3 \
	nv.3 nvlist_recv.3 \
	nv.3 nvlist_xfer.3 \
	nv.3 nvlist_next.3 \
	nv.3 nvlist_exists.3 \
	nv.3 nvlist_exists_type.3 \
	nv.3 nvlist_exists_null.3 \
	nv.3 nvlist_exists_bool.3 \
	nv.3 nvlist_exists_number.3 \
	nv.3 nvlist_exists_string.3 \
	nv.3 nvlist_exists_nvlist.3 \
	nv.3 nvlist_exists_descriptor.3 \
	nv.3 nvlist_exists_binary.3 \
	nv.3 nvlist_add_null.3 \
	nv.3 nvlist_add_bool.3 \
	nv.3 nvlist_add_number.3 \
	nv.3 nvlist_add_string.3 \
	nv.3 nvlist_add_stringf.3 \
	nv.3 nvlist_add_stringv.3 \
	nv.3 nvlist_add_nvlist.3 \
	nv.3 nvlist_add_descriptor.3 \
	nv.3 nvlist_add_binary.3 \
	nv.3 nvlist_move_string.3 \
	nv.3 nvlist_move_nvlist.3 \
	nv.3 nvlist_move_descriptor.3 \
	nv.3 nvlist_move_binary.3 \
	nv.3 nvlist_get_bool.3 \
	nv.3 nvlist_get_number.3 \
	nv.3 nvlist_get_string.3 \
	nv.3 nvlist_get_nvlist.3 \
	nv.3 nvlist_get_descriptor.3 \
	nv.3 nvlist_get_binary.3 \
	nv.3 nvlist_get_parent.3 \
	nv.3 nvlist_take_bool.3 \
	nv.3 nvlist_take_number.3 \
	nv.3 nvlist_take_string.3 \
	nv.3 nvlist_take_nvlist.3 \
	nv.3 nvlist_take_descriptor.3 \
	nv.3 nvlist_take_binary.3 \
	nv.3 nvlist_free.3 \
	nv.3 nvlist_free_type.3 \
	nv.3 nvlist_free_null.3 \
	nv.3 nvlist_free_bool.3 \
	nv.3 nvlist_free_number.3 \
	nv.3 nvlist_free_string.3 \
	nv.3 nvlist_free_nvlist.3 \
	nv.3 nvlist_free_descriptor.3 \
	nv.3 nvlist_free_binary.3
MLINKS+=nv.3 nvlist_existsf.3 \
	nv.3 nvlist_existsf_type.3 \
	nv.3 nvlist_existsf_null.3 \
	nv.3 nvlist_existsf_bool.3 \
	nv.3 nvlist_existsf_number.3 \
	nv.3 nvlist_existsf_string.3 \
	nv.3 nvlist_existsf_nvlist.3 \
	nv.3 nvlist_existsf_descriptor.3 \
	nv.3 nvlist_existsf_binary.3 \
	nv.3 nvlist_addf_null.3 \
	nv.3 nvlist_addf_bool.3 \
	nv.3 nvlist_addf_number.3 \
	nv.3 nvlist_addf_string.3 \
	nv.3 nvlist_addf_nvlist.3 \
	nv.3 nvlist_addf_descriptor.3 \
	nv.3 nvlist_addf_binary.3 \
	nv.3 nvlist_movef_string.3 \
	nv.3 nvlist_movef_nvlist.3 \
	nv.3 nvlist_movef_descriptor.3 \
	nv.3 nvlist_movef_binary.3 \
	nv.3 nvlist_getf_bool.3 \
	nv.3 nvlist_getf_number.3 \
	nv.3 nvlist_getf_string.3 \
	nv.3 nvlist_getf_nvlist.3 \
	nv.3 nvlist_getf_descriptor.3 \
	nv.3 nvlist_getf_binary.3 \
	nv.3 nvlist_takef_bool.3 \
	nv.3 nvlist_takef_number.3 \
	nv.3 nvlist_takef_string.3 \
	nv.3 nvlist_takef_nvlist.3 \
	nv.3 nvlist_takef_descriptor.3 \
	nv.3 nvlist_takef_binary.3 \
	nv.3 nvlist_freef.3 \
	nv.3 nvlist_freef_type.3 \
	nv.3 nvlist_freef_null.3 \
	nv.3 nvlist_freef_bool.3 \
	nv.3 nvlist_freef_number.3 \
	nv.3 nvlist_freef_string.3 \
	nv.3 nvlist_freef_nvlist.3 \
	nv.3 nvlist_freef_descriptor.3 \
	nv.3 nvlist_freef_binary.3
MLINKS+=nv.3 nvlist_existsv.3 \
	nv.3 nvlist_existsv_type.3 \
	nv.3 nvlist_existsv_null.3 \
	nv.3 nvlist_existsv_bool.3 \
	nv.3 nvlist_existsv_number.3 \
	nv.3 nvlist_existsv_string.3 \
	nv.3 nvlist_existsv_nvlist.3 \
	nv.3 nvlist_existsv_descriptor.3 \
	nv.3 nvlist_existsv_binary.3 \
	nv.3 nvlist_addv_null.3 \
	nv.3 nvlist_addv_bool.3 \
	nv.3 nvlist_addv_number.3 \
	nv.3 nvlist_addv_string.3 \
	nv.3 nvlist_addv_nvlist.3 \
	nv.3 nvlist_addv_descriptor.3 \
	nv.3 nvlist_addv_binary.3 \
	nv.3 nvlist_movev_string.3 \
	nv.3 nvlist_movev_nvlist.3 \
	nv.3 nvlist_movev_descriptor.3 \
	nv.3 nvlist_movev_binary.3 \
	nv.3 nvlist_getv_bool.3 \
	nv.3 nvlist_getv_number.3 \
	nv.3 nvlist_getv_string.3 \
	nv.3 nvlist_getv_nvlist.3 \
	nv.3 nvlist_getv_descriptor.3 \
	nv.3 nvlist_getv_binary.3 \
	nv.3 nvlist_takev_bool.3 \
	nv.3 nvlist_takev_number.3 \
	nv.3 nvlist_takev_string.3 \
	nv.3 nvlist_takev_nvlist.3 \
	nv.3 nvlist_takev_descriptor.3 \
	nv.3 nvlist_takev_binary.3 \
	nv.3 nvlist_freev.3 \
	nv.3 nvlist_freev_type.3 \
	nv.3 nvlist_freev_null.3 \
	nv.3 nvlist_freev_bool.3 \
	nv.3 nvlist_freev_number.3 \
	nv.3 nvlist_freev_string.3 \
	nv.3 nvlist_freev_nvlist.3 \
	nv.3 nvlist_freev_descriptor.3 \
	nv.3 nvlist_freev_binary.3

WARNS?=	6

.if ${MK_TESTS} != "no"
SUBDIR+=	tests
.endif

.include <bsd.lib.mk>
OpenPOWER on IntegriCloud