1# $FreeBSD$ 2 3LIB= geom 4SRCS+= geom_getxml.c 5SRCS+= geom_stats.c 6SRCS+= geom_xml2tree.c 7SRCS+= geom_ctl.c 8INCS= libgeom.h 9 10CFLAGS += -I${.CURDIR} 11 12WARNS?= 3 13 14DPADD= ${LIBBSDXML} ${LIBSBUF} 15LDADD= -lbsdxml -lsbuf 16 17MAN= libgeom.3 18 19MLINKS+= \ 20 libgeom.3 geom_stats_open.3 \ 21 libgeom.3 geom_stats_close.3 \ 22 libgeom.3 geom_stats_resync.3 \ 23 libgeom.3 geom_stats_snapshot_get.3 \ 24 libgeom.3 geom_stats_snapshot_free.3 \ 25 libgeom.3 geom_stats_snapshot_timestamp.3 \ 26 libgeom.3 geom_stats_snapshot_reset.3 \ 27 libgeom.3 geom_stats_snapshot_next.3 28 29.include <bsd.lib.mk> 30