xref: /freebsd/sbin/ffsinfo/Makefile (revision 81ad6265)
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$
5#
6
7GROWFS= ${.CURDIR:H}/growfs
8.PATH: ${GROWFS}
9
10PACKAGE=ufs
11PROG=	ffsinfo
12SRCS=	ffsinfo.c debug.c
13MAN=	ffsinfo.8
14
15WARNS?=	1
16CFLAGS+=-DFS_DEBUG -I${GROWFS}
17LIBADD=	ufs
18
19.include <bsd.prog.mk>
20