c6063d0da8
from the latter.
22 lines
259 B
Makefile
22 lines
259 B
Makefile
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
.include <src.opts.mk>
|
|
|
|
PROG= flowctl
|
|
MAN= flowctl.8
|
|
|
|
WARNS?= 2
|
|
DPADD= ${LIBNETGRAPH}
|
|
LDADD= -lnetgraph
|
|
|
|
.if ${MK_INET6_SUPPORT} != "no"
|
|
CFLAGS+= -DINET6
|
|
.endif
|
|
.if ${MK_INET_SUPPORT} != "no"
|
|
CFLAGS+= -DINET
|
|
.endif
|
|
|
|
.include <bsd.prog.mk>
|