]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - usr.sbin/flowctl/Makefile
heimdal: asn1: Use unsigned bitfields for named bitsets
[FreeBSD/FreeBSD.git] / usr.sbin / flowctl / Makefile
1 #
2 #
3
4 .include <src.opts.mk>
5         
6 PROG=   flowctl
7 MAN=    flowctl.8
8
9 WARNS?= 2
10 LIBADD= netgraph
11
12 .if ${MK_INET6_SUPPORT} != "no"
13 CFLAGS+= -DINET6
14 .endif
15 .if ${MK_INET_SUPPORT} != "no"
16 CFLAGS+= -DINET
17 .endif
18
19 CFLAGS+= -Wno-error=unused-but-set-variable
20
21 .include <bsd.prog.mk>