]> CyberLeo.Net >> Repos - FreeBSD/releng/9.2.git/blob - usr.sbin/flowctl/Makefile
- Copy stable/9 to releng/9.2 as part of the 9.2-RELEASE cycle.
[FreeBSD/releng/9.2.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>