Makefile revision 319185
1#	@(#)Makefile	8.8 (Berkeley) 6/21/2000
2#
3# $TSHeader: src/sbin/growfs/Makefile,v 1.4 2000/12/05 19:45:24 tomsoft Exp $
4# $FreeBSD: stable/11/sbin/growfs/Makefile 319185 2017-05-30 04:17:22Z ngie $
5#
6
7.include <src.opts.mk>
8
9.PATH:	${.CURDIR:H}/mount
10
11PACKAGE=runtime
12PROG=   growfs
13SRCS=   growfs.c getmntopts.c
14MAN=	growfs.8
15CFLAGS+=-I${.CURDIR:H}/mount
16
17.if defined(GFSDBG)
18SRCS+=	debug.c
19CFLAGS+= -DFS_DEBUG
20NO_WCAST_ALIGN= yes
21.endif
22
23LIBADD=	util
24
25.if ${MK_TESTS} != "no"
26SUBDIR+=    tests
27.endif
28
29.include <bsd.prog.mk>
30