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