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