]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sbin/growfs/Makefile
Update libucl to latest git snapshot (20151027)
[FreeBSD/FreeBSD.git] / sbin / growfs / Makefile
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}/../mount
10
11 PROG=   growfs
12 SRCS=   growfs.c getmntopts.c
13 MAN=    growfs.8
14 CFLAGS+=-I${.CURDIR}/../mount
15
16 .if defined(GFSDBG)
17 SRCS+=  debug.c
18 CFLAGS+= -DFS_DEBUG
19 NO_WCAST_ALIGN= yes
20 .endif  
21
22 LIBADD= util
23
24 .if ${MK_TESTS} != "no"
25 SUBDIR+=    tests
26 .endif
27
28 .include <bsd.prog.mk>