1# $FreeBSD$ 2 3LIB= geom 4SHLIBDIR?= /lib 5SRCS+= geom_getxml.c 6SRCS+= geom_stats.c 7SRCS+= geom_xml2tree.c 8SRCS+= geom_ctl.c 9INCS= libgeom.h 10 11CFLAGS += -I${.CURDIR} 12 13WARNS?= 3 14 15DPADD= ${LIBBSDXML} ${LIBSBUF} 16LDADD= -lbsdxml -lsbuf 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 36.include <bsd.lib.mk> 37