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$ 5 # 6 7 .include <src.opts.mk> 8 9 .PATH: ${.CURDIR:H}/mount 10 11 PACKAGE=runtime 12 PROG= growfs 13 SRCS= growfs.c getmntopts.c 14 MAN= growfs.8 15 CFLAGS+=-I${.CURDIR:H}/mount 16 17 .if defined(GFSDBG) 18 SRCS+= debug.c 19 CFLAGS+= -DFS_DEBUG 20 NO_WCAST_ALIGN= yes 21 .endif 22 23 LIBADD= util 24 25 .if ${MK_TESTS} != "no" 26 SUBDIR+= tests 27 .endif 28 29 .include <bsd.prog.mk> 30