Makefile revision 275030
1# @(#)Makefile    8.8 (Berkeley) 6/21/2000
2#
3# $TSHeader: src/sbin/ffsinfo/Makefile,v 1.3 2000/12/05 19:45:10 tomsoft Exp $
4# $FreeBSD: head/sbin/ffsinfo/Makefile 275030 2014-11-25 11:23:12Z bapt $
5#
6
7GROWFS= ${.CURDIR}/../growfs
8.PATH: ${GROWFS}
9
10PROG=	ffsinfo
11SRCS=	ffsinfo.c debug.c
12MAN=	ffsinfo.8
13
14WARNS?=	1
15CFLAGS+=-DFS_DEBUG -I${GROWFS}
16LIBADD=	ufs
17
18.include <bsd.prog.mk>
19