freebsd-dev/usr.sbin/flowctl/Makefile
Baptiste Daroussin c6db8143ed Convert usr.sbin to LIBADD
Reduce overlinking
2014-11-25 16:57:27 +00:00

21 lines
234 B
Makefile

#
# $FreeBSD$
#
.include <src.opts.mk>
PROG= flowctl
MAN= flowctl.8
WARNS?= 2
LIBADD= netgraph
.if ${MK_INET6_SUPPORT} != "no"
CFLAGS+= -DINET6
.endif
.if ${MK_INET_SUPPORT} != "no"
CFLAGS+= -DINET
.endif
.include <bsd.prog.mk>