2d68bf45bf
Binary builds that cannot handle this must explicitly set WARNS=0. Reviewed by: mike
23 lines
372 B
Makefile
23 lines
372 B
Makefile
# @(#)Makefile 8.8 (Berkeley) 6/21/2000
|
|
#
|
|
# $TSHeader: src/sbin/growfs/Makefile,v 1.4 2000/12/05 19:45:24 tomsoft Exp $
|
|
# $FreeBSD$
|
|
#
|
|
|
|
MAINTAINER= tomsoft@FreeBSD.ORG, chm@FreeBSD.ORG
|
|
|
|
#GFSDBG=YES
|
|
#CFLAGS+=${BDECFLAGS}
|
|
|
|
PROG= growfs
|
|
SRCS= growfs.c
|
|
MAN= growfs.8
|
|
|
|
.if defined(GFSDBG)
|
|
SRCS+= debug.c
|
|
CFLAGS+=-DFS_DEBUG
|
|
.endif
|
|
WARNS= 0
|
|
|
|
.include <bsd.prog.mk>
|