6765aefcf3
Test it with feature_present(3), so that we do not end up with passing an unsupported version to NgSendMsg(3). Approved by: glebius
22 lines
258 B
Makefile
22 lines
258 B
Makefile
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
.include <bsd.own.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>
|