2000-12-09 15:27:35 +00: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 04:22:01 +00:00
|
|
|
.include <src.opts.mk>
|
2014-03-16 02:07:08 +00:00
|
|
|
|
2017-03-04 11:33:01 +00:00
|
|
|
.PATH: ${.CURDIR:H}/mount
|
2012-04-30 16:08:02 +00:00
|
|
|
|
2016-02-09 20:19:31 +00:00
|
|
|
PACKAGE=runtime
|
2000-12-09 15:27:35 +00:00
|
|
|
PROG= growfs
|
2012-04-30 16:08:02 +00:00
|
|
|
SRCS= growfs.c getmntopts.c
|
2001-03-26 14:33:27 +00:00
|
|
|
MAN= growfs.8
|
2017-03-04 11:33:01 +00:00
|
|
|
CFLAGS+=-I${.CURDIR:H}/mount
|
2000-12-09 15:27:35 +00:00
|
|
|
|
|
|
|
.if defined(GFSDBG)
|
2015-04-24 12:48:48 +00:00
|
|
|
SRCS+= debug.c
|
|
|
|
CFLAGS+= -DFS_DEBUG
|
|
|
|
NO_WCAST_ALIGN= yes
|
2017-03-04 11:33:01 +00:00
|
|
|
.endif
|
2000-12-09 15:27:35 +00:00
|
|
|
|
2014-11-25 11:23:12 +00:00
|
|
|
LIBADD= util
|
2012-04-30 16:08:02 +00:00
|
|
|
|
2014-03-16 02:07:08 +00:00
|
|
|
.if ${MK_TESTS} != "no"
|
|
|
|
SUBDIR+= tests
|
|
|
|
.endif
|
|
|
|
|
2014-11-25 11:23:12 +00:00
|
|
|
.include <bsd.prog.mk>
|