xref: /freebsd/sbin/ffsinfo/Makefile (revision 315ee00f)
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#
5
6GROWFS= ${.CURDIR:H}/growfs
7.PATH: ${GROWFS}
8
9PACKAGE=ufs
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