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