]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/blob - usr.sbin/flowctl/Makefile
Copy head (r256279) to stable/10 as part of the 10.0-RELEASE cycle.
[FreeBSD/stable/10.git] / usr.sbin / flowctl / Makefile
1 #
2 # $FreeBSD$
3 #
4
5 .include <bsd.own.mk>
6         
7 PROG=   flowctl
8 MAN=    flowctl.8
9
10 WARNS?= 2
11 DPADD=  ${LIBNETGRAPH}
12 LDADD=  -lnetgraph
13
14 .if ${MK_INET6_SUPPORT} != "no"
15 CFLAGS+= -DINET6
16 .endif
17 .if ${MK_INET_SUPPORT} != "no"
18 CFLAGS+= -DINET
19 .endif
20
21 .include <bsd.prog.mk>