1# $FreeBSD$ 2 3LIB= geom 4SHLIBDIR?= /lib 5SRCS+= geom_getxml.c 6SRCS+= geom_stats.c 7SRCS+= geom_xml2tree.c 8SRCS+= geom_ctl.c 9SRCS+= geom_util.c 10INCS= libgeom.h 11 12CFLAGS += -I${.CURDIR} 13 14WARNS?= 3 15 16LIBADD+= bsdxml sbuf 17 18MAN= libgeom.3 19 20MLINKS+= \ 21 libgeom.3 geom_stats_open.3 \ 22 libgeom.3 geom_stats_close.3 \ 23 libgeom.3 geom_stats_resync.3 \ 24 libgeom.3 geom_stats_snapshot_get.3 \ 25 libgeom.3 geom_stats_snapshot_free.3 \ 26 libgeom.3 geom_stats_snapshot_timestamp.3 \ 27 libgeom.3 geom_stats_snapshot_reset.3 \ 28 libgeom.3 geom_stats_snapshot_next.3 \ 29 libgeom.3 gctl_get_handle.3 \ 30 libgeom.3 gctl_ro_param.3 \ 31 libgeom.3 gctl_rw_param.3 \ 32 libgeom.3 gctl_issue.3 \ 33 libgeom.3 gctl_free.3 \ 34 libgeom.3 gctl_dump.3 \ 35 libgeom.3 g_close.3 \ 36 libgeom.3 g_delete.3 \ 37 libgeom.3 g_device_path.3 \ 38 libgeom.3 g_flush.3 \ 39 libgeom.3 g_get_ident.3 \ 40 libgeom.3 g_get_name.3 \ 41 libgeom.3 g_mediasize.3 \ 42 libgeom.3 g_open.3 \ 43 libgeom.3 g_open_by_ident.3 \ 44 libgeom.3 g_providername.3 \ 45 libgeom.3 g_sectorsize.3 46 47.include <bsd.lib.mk> 48