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