2000-12-09 10:27:35 -05:00
|
|
|
# @(#)Makefile 8.8 (Berkeley) 6/21/2000
|
|
|
|
|
#
|
|
|
|
|
# $TSHeader: src/sbin/growfs/Makefile,v 1.4 2000/12/05 19:45:24 tomsoft Exp $
|
|
|
|
|
# $FreeBSD$
|
|
|
|
|
#
|
|
|
|
|
|
2014-05-06 00:22:01 -04:00
|
|
|
.include <src.opts.mk>
|
2014-03-15 22:07:08 -04:00
|
|
|
|
2017-03-04 06:33:01 -05:00
|
|
|
.PATH: ${.CURDIR:H}/mount
|
2012-04-30 12:08:02 -04:00
|
|
|
|
2016-02-09 15:19:31 -05:00
|
|
|
PACKAGE=runtime
|
2000-12-09 10:27:35 -05:00
|
|
|
PROG= growfs
|
2012-04-30 12:08:02 -04:00
|
|
|
SRCS= growfs.c getmntopts.c
|
2001-03-26 09:33:27 -05:00
|
|
|
MAN= growfs.8
|
2017-03-04 06:33:01 -05:00
|
|
|
CFLAGS+=-I${.CURDIR:H}/mount
|
2000-12-09 10:27:35 -05:00
|
|
|
|
|
|
|
|
.if defined(GFSDBG)
|
2015-04-24 08:48:48 -04:00
|
|
|
SRCS+= debug.c
|
|
|
|
|
CFLAGS+= -DFS_DEBUG
|
|
|
|
|
NO_WCAST_ALIGN= yes
|
2017-03-04 06:33:01 -05:00
|
|
|
.endif
|
2000-12-09 10:27:35 -05:00
|
|
|
|
2017-10-10 12:17:03 -04:00
|
|
|
LIBADD= ufs util
|
2012-04-30 12:08:02 -04:00
|
|
|
|
2017-08-02 04:50:42 -04:00
|
|
|
HAS_TESTS=
|
2017-08-02 04:35:51 -04:00
|
|
|
SUBDIR.${MK_TESTS}+= tests
|
2014-03-15 22:07:08 -04:00
|
|
|
|
2014-11-25 06:23:12 -05:00
|
|
|
.include <bsd.prog.mk>
|