1#
2# $FreeBSD$
3#
4
5.include <src.opts.mk>
6	
7PROG=	flowctl
8MAN=	flowctl.8
9
10WARNS?= 2
11LIBADD=	netgraph
12
13.if ${MK_INET6_SUPPORT} != "no"
14CFLAGS+= -DINET6
15.endif
16.if ${MK_INET_SUPPORT} != "no"
17CFLAGS+= -DINET
18.endif
19
20.include <bsd.prog.mk>
21