freebsd-dev/sbin/ffsinfo/Makefile

20 lines
333 B
Makefile
Raw Normal View History

# @(#)Makefile 8.8 (Berkeley) 6/21/2000
#
# $TSHeader: src/sbin/ffsinfo/Makefile,v 1.3 2000/12/05 19:45:10 tomsoft Exp $
# $FreeBSD$
#
GROWFS= ${.CURDIR}/../growfs
2003-06-11 23:24:31 +00:00
.PATH: ${GROWFS}
PACKAGE=runtime
2003-06-11 23:24:31 +00:00
PROG= ffsinfo
SRCS= ffsinfo.c debug.c
MAN= ffsinfo.8
WARNS?= 1
2003-06-11 23:24:31 +00:00
CFLAGS+=-DFS_DEBUG -I${GROWFS}
LIBADD= ufs
2011-11-09 21:01:50 +00:00
.include <bsd.prog.mk>