]> CyberLeo.Net >> Repos - FreeBSD/releng/9.2.git/blob - lib/libgeom/Makefile
- Copy stable/9 to releng/9.2 as part of the 9.2-RELEASE cycle.
[FreeBSD/releng/9.2.git] / lib / libgeom / Makefile
1 # $FreeBSD$
2
3 LIB=    geom
4 SHLIBDIR?= /lib
5 SRCS+=  geom_getxml.c
6 SRCS+=  geom_stats.c
7 SRCS+=  geom_xml2tree.c
8 SRCS+=  geom_ctl.c
9 SRCS+=  geom_util.c
10 INCS=   libgeom.h
11
12 CFLAGS += -I${.CURDIR}
13
14 WARNS?= 3
15
16 DPADD=  ${LIBBSDXML} ${LIBSBUF}
17 LDADD=  -lbsdxml -lsbuf
18
19 MAN=    libgeom.3
20
21 MLINKS+= \
22         libgeom.3 geom_stats_open.3 \
23         libgeom.3 geom_stats_close.3 \
24         libgeom.3 geom_stats_resync.3 \
25         libgeom.3 geom_stats_snapshot_get.3 \
26         libgeom.3 geom_stats_snapshot_free.3 \
27         libgeom.3 geom_stats_snapshot_timestamp.3 \
28         libgeom.3 geom_stats_snapshot_reset.3 \
29         libgeom.3 geom_stats_snapshot_next.3 \
30         libgeom.3 gctl_get_handle.3 \
31         libgeom.3 gctl_ro_param.3 \
32         libgeom.3 gctl_rw_param.3 \
33         libgeom.3 gctl_issue.3 \
34         libgeom.3 gctl_free.3 \
35         libgeom.3 gctl_dump.3 \
36         libgeom.3 g_close.3 \
37         libgeom.3 g_delete.3 \
38         libgeom.3 g_device_path.3 \
39         libgeom.3 g_flush.3 \
40         libgeom.3 g_get_ident.3 \
41         libgeom.3 g_get_name.3 \
42         libgeom.3 g_mediasize.3 \
43         libgeom.3 g_open.3 \
44         libgeom.3 g_open_by_ident.3 \
45         libgeom.3 g_providername.3 \
46         libgeom.3 g_sectorsize.3
47
48 .include <bsd.lib.mk>